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.

I'm creating a facebook app for a facebook-login on a webpage. For this I need to ask the user to give certain permissions. like user_likes etc...

I can add these permission requests in the apps->appname->permissions section of the facebook developer platform. But when I save my changes i get the message:

"Changes saved. Note that your changes may take several minutes to propagate to all servers."

  1. This is taking already a full day, is this normal?
  2. Is there a way to clear the cache or something similar?
share|improve this question

closed as off topic by Jan Hančič, Ash Burlaczenko, d_r_w, Aleksander Blomskøld, vyegorov Feb 1 at 14:16

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

You can't really do anything to make it happen early. One trick that might come useful is adding scope parameter in your authentication url, for eg.

https://www.facebook.com/dialog/oauth?
    client_id=YOUR_APP_ID
   &redirect_uri=YOUR_REDIRECT_URI
   &state=SOME_ARBITRARY_BUT_UNIQUE_STRING
   &scope=user_likes,publish_stream, etc. 

And since you're generating this dynamically, it will work as expected.

share|improve this answer

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