Facebook provides some documentation on oauth login options.
OAuth 2 Login Dialog
Options:
- client_id = your application id
- redirect_uri = URL of your website for your application
- display = page, popup, iframe, async, touch. How to display login.
- scope = permission names. The permissions that your application requests from the user for your application.
- state = string included in the response back to your application.
- response_type = code or token, or both. It is used differently depending on the authorization flow.
Is there more information about the different types of oauth functions and the parameters that come with it?
I need information on how to structure the url for oauth . I know a couple of configurations. For example:
https:
I saw a discussion that showed this:
https://graph.facebook.com/oauth/authorize? client_id=123456789 &redirect_uri=http://example.com/ &scope=publish_stream,share_item,offline_access,manage_pages
Note the difference in URLs:
/dialog/oauth?
or
/oauth/authorize?
What does authorize do? Does it grant GRANT permissions instead of ASKING for permissions? Where is the documentation on this subject?
facebook facebook-oauth oauth facebook-graph-api
Sandy good
source share