I launch the application using the Instagram RealTime API, and when I subscribe to the tag, everything works fine initially, I see for sure that the response time within 100 ms returns to instagram, but after about an hour and a half hours they accidentally delete my subscription to tags . I check and I am not limited by the bid, so I set up something to check my subscriptions every 10 minutes, and if the tag that I subscribed to does not return from instagram to re-subscribe. On startup, I return the response to which it is subscribed -
{ object: 'tag',
object_id: '...',
aspect: 'media',
callback_url: 'http://...',
type: 'subscription',
id: '4479168' }
but then when I check my subscriptions again using the API Console, it shows that there are no subscriptions.
Does anyone know why Instagram automatically deletes my subscription.
source
share