I am using Facebook C# SDK( https://github.com/facebook/csharp-sdk ), and am wondering if there is a graph api function that can get user’s granted permission to my application, like
https://api.facebook.com/method/users.hasAppPermission?ext_perm=offline_access&access_token=XXXXXXXXX&format=json
So I want some thing like this
https://graph.facebook.com/me/hasAppPermission
so that I can call the Facebook C# SDK API to Post with this url and a dictionary object with parameters.
thanks!
Facebook added Graph call for this:
which returns JSON structure like this:
Documentation:
http://developers.facebook.com/docs/reference/api/user/