hey how can i check in javascript if user has granted my site the publish stream permission
?
|
hey how can i check in javascript if user has granted my site the publish stream permission ? |
|||
|
|
|
I had this same problem but couldn't find any sample code. Anyways, I came up with this, which works for me. Hope this helps someone.
|
|||
|
|
|
The API method you're looking for is Users.hasAppPermission. You could call it directly from JavaScript, but it will probably be more efficient to write your own HTTP method, that calls it via API and returns "true" or "false" via JSON. There is also a filed bug (13378) that Users.hasAppPermission has no Graph API equivalent. |
|||||
|
|
In the new Graph API (including via JavaScript) this can be accomplished by accessing " From the User object documentation:
|
|||
|
|
|
Looks like is not supported. At least is not documented. You may read from javascript once the permission is granted though. |
|||
|
|