Skip to main content

check for extended permissions with new facebook javascript sdk



is there a way to check in my application (canvas) if the user has extended permission (for example "stream.publish")?





i only can find a solution for the old sdk.





thanks!



Source: Tips4all

Comments

  1. Update at the end of 2011:

    FB.api('/me/permissions', function (response) {
    console.log(response);
    } );


    console output:

    {
    data: [
    {
    create_note: 1,
    installed: 1,
    photo_upload: 1,
    publish_stream: 1,
    share_item: 1,
    status_update: 1,
    video_upload: 1,
    }
    ]
    }

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?