I wrote a quick http server script to first acknowledge a subscription and receive updates. I was able to verify the subscription and start receiving updates. With this method I'm able to print the updated feed items to the console but google's subscriber diagnostics says the receipt failed.
Shouldn't this be enough?: (this is inside a handler class subclassed with BaseHTTPServer.BaseHTTPRequestHandler)
def do_POST(self):
self.send_response(202)
self.end_headers()
stuff = self.rfile.read()
print stuff
Thanks.