Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my development enviroment (localhost of course). Based on this documentation I've sucessfully created a apps token with this:

https://graph.facebook.com/oauth/access_token?client_id=<app-id>&client_secret=<app-secret>&grant_type=client_credentials

then make post request to verify my callback_url to FB graph, like this

https://graph.facebook.com/<app-id>/subscriptions?access_token=my_apps_access_token=user&fields=first_name&callback_url=http://localhost:3000&verify_token=mystringtoken

but it's always return :

 {"error":{"message":"(#2200) callback verification failed: ","type":"OAuthException"}}

(I've try using lvh.me:3000)

Is there possible to verify the callback_url using localhost?

share|improve this question
Erm, ignoring the auth problems you'd need to provide an actual URL that is reachable from the internet. – Brian Roach Dec 29 '11 at 9:14
I use heroku for that.. the verification callback_url is sucessfull but there's another problem.. when the app user change somthing that the apps already subscribed (first_name, last_name and music) facebook didn't hit the callback_url – Rifki Fauzi Jan 2 '12 at 8:58

1 Answer

up vote 1 down vote accepted

From the API documentation:

Your callback server must handle two types of requests.

Facebook servers will make a single HTTP GET to your callback URL when you try to add or modify a subscription. After a successful subscription, Facebook servers will notify your server of changes by issuing HTTP POST requests to the same URL.

From this statement, I would presume that you must provide a publicly accessible URL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.