Reference: http://developers.facebook.com/docs/reference/api/realtime/
When a subscription has been created for real-time updates of some sort (say user properties, for instance), what happens if the provided callback URL is unreachable?
There are a few sub-cases here:
- Failure to reach the callback URL at subscription verification;
- Subscription verification succeeds but the callback URL becomes unreachable at some later time when attempting a change notification.
It's mainly #2 that interests me. Does the notification go into a retry queue? If so, how many retries are attempted, and over what time span? Is there any way to query for "missed" notifications? Is there different handling for different failure modes (host name lookup, host unreachable, port closed, error return code in the HTTP response)?