views:

38

answers:

1

Hello everyone, I am developing an Android application for which I would like to add Facebook functionality using Facebook's Android SDK. I have registered the application and acquired the ID and Secret, but what is the point of the URL? Am I supposed to install something on my website on that specific URL so that I Facebook can do the OAuth key exchange?

If so, then what is it?

+1  A: 

Application URL is basically used for callback purposes, so that the access_token may be returned to the callback and your application handle the returned result.

The Elite Gentleman
You mean I don't really have to put anything in my website, or do I have to put a OAuth module or something? The documentation is really vague about this.
Voulnet
Facebook uses OAuth 2 API specification so you'll have to read the OAuth 2 specification to see if callback url is required.
The Elite Gentleman
Thank you, it isn't required. I can go along happily just with the application ID.
Voulnet