Facebook: Is there a way to verify that I have certain permissions?

I started developing the Facebook application using the new graphical API.

I want to check if I have certain permissions (e.g. publish_stream) for a specific user. I know that the old REST API had users.hasAppPermission, but I do not see anything that would be in the new graphical API.

How can i do this?

+3
source share
2 answers

You will need to run FQL on the page permissions. If you use the JS SDK, you can run it with FB.Data.query().

+1
source

. API "/[user]/permissions". . .

+1

Source: https://habr.com/ru/post/1754007/


All Articles