I am using Django-push (
https://github.com/brutasse/django-push) project..
/subscriber is the include url for django_push.subscriber.urls
As there is only one feed I am on test-site, the call back url is /subscriber/1
1) I invoked Subscription.objects.subscribe(feed_url, hub=hub)
Then, I observed the below GET with 200 19 response
/subscriber/1/?hub.topic= &hub.challenge= &hub.verify_token= &hub.mode= &hub.lease_seconds=
2) After the above, I went back to my blog, created new entries, 2 minutes later, I observed a POST request on the url /hub resulting 404
What's going on?
Thanks for your time