Reputation: 963
I am trying to write a java code to get the access token of facebook in order to do operation in it using graph API.For that I need to know the Facebook Authorization url, scoped authorization url and token url?
Kindly, specify those urls.
Upvotes: 1
Views: 5879
Reputation: 7415
You can find all the info you need for authorization with Facebook in their Facebook Developers reference.
So the URLs you need are probably these:
Authorization URL: https://www.facebook.com/dialog/oauth (the scopes that can be specified with this URL, can be found here)
Access Token URL: https://graph.facebook.com/oauth/access_token
Upvotes: 10