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 working on a Facebook App (the one hosted in iframe). In a scenario I cache user's permission in database, and rely on Facebook Realtime Update to keep my permissions cache in sync.

I notice that when user approve my app, Facebook does send POST to my Realtime endpoint. However, when user revoke a permission, there is no update.

Is it by design or I miss something?

In Facebook App setting I've subscribed to permission object and leave the fields as empty.

Troy

share|improve this question

2 Answers

Although I haven't tried them yet but I would suggest if you could also give a look to Realtime Updates feature. It has the options of getting notified when there are changes in the permissions the user has granted your application

share|improve this answer
thanks. I'm actually asking about Realtime Update. I've set up all the required endpoints. I can receive GET validation and POST update for things such as "user likes". Just no permission revoke updates. – Troy Dai Dec 4 '12 at 4:34
You have to use the permissions object with the fields listing out permission you want to be notified about for to get realtime update on it. – Anvesh Saxena Dec 4 '12 at 6:21
Please be noted in my original post I said I can receive POST notification when user "approve" permission to my App. In other words, my setting is correct. It just doesn't receive "permission revoke" notification. So I specifically doubt if Facebook doesn't sent you notification when permission is revoked. That is my ask. – Troy Dai Dec 4 '12 at 18:43
In your original post you have mentioned that you have subscribed to them but have left the field empty, what I was suggesting earlier is to add the permissions you have asked in those fields, then only will you get the POST on change with those permissions. And to be clear I haven't tried it but will try it now to get clear on its working. – Anvesh Saxena Dec 5 '12 at 5:12

You have to set a Deauthorize Callback URL in your app settings. It's in the advanced session. When a user revokes your app authoriztion, FB will make a POST to the specified url.

This might help.

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.