The situation is: we have an APP + User + BD.
When user opens my APP I get from FB signed_request and user_id+oauth_token. How can I then get access_token and check/get user permissions and other data?
Thx.
|
The situation is: we have an APP + User + BD. When user opens my APP I get from FB signed_request and user_id+oauth_token. How can I then get access_token and check/get user permissions and other data? Thx.
| |||
|
feedback
|
|
The oauth_token you're talking about is also the users access_token, they should be exactly the same. To check the users permissions you can make a GET call to /me/permissions this should return a data array similar to the below
Depending on what the other data you wish to access you will need to ask for more permissions and then call the appropriate API end points. For example to get the users basic information make a call to You can find all the permissions you can ask for at https://developers.facebook.com/docs/reference/api/permissions/ And all the information about where to call in the API for retrieving the different bits of data you require here https://developers.facebook.com/docs/reference/api/ | |||
|
feedback
|
|
When you say you have their 'oauth token' - are you sure that isn't the access token? Can you try making an API call to | |||
|
feedback
|
| |||
|
feedback
|