I'm saying that fetching the same URL works from the browser and doesn't
work from AppEngine.

When I try to fetching URL
https://www.feedmyinbox.com/PuSHCallback.ashx?hub.topic=http://allthingsd.com/feed/&hub.challenge=12345&hub.mode=subscribe&hub.lease_seconds=432000
(literally
that URL, no changes) from AppEngine, I get DeadlineExceededError.

Fetching is done as follows:

  from google.appengine.api import urlfetch

  URL = '
https://www.feedmyinbox.com/PuSHCallback.ashx?hub.topic=http://allthingsd.com/feed/&hub.challenge=556677&hub.mode=subscribe&hub.lease_seconds=432000
'

  HEADERS = {
      'Cache-Control': 'no-cache,max-age=0',
      'Pragma': 'no-cache'
      }

  urlfetch.fetch(url=URL, headers=HEADERS)

If you aren't doing anything fancy with requests coming from AppEngine,
I'll raise this issue with the AppEngine team.

Roman.

On Tue, Nov 5, 2013 at 2:27 PM, GAURAV SHARMA <[email protected]>wrote:

> Hi,
>
> Yes we are matching verify_token which we send while requesting.
> and how u requested as we are unable to get response on callback url in
> case of allthingsD.
> What is code of appEngine to send subscription request.
>
> --
>
> ---
> You received this message because you are subscribed to the Google Groups
> "Pubsubhubbub" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"Pubsubhubbub" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to