Hi James,
Digg checks links by doing HTTP HEAD requests to them. If your handler
doesn't support HEAD, digg will return an error. Try adding this to your
handler class:
--
def head(self, *args, **kwargs):
self.get(*args, **kwargs)
self.response.clear()
--
On Tue, Feb 2, 2010 at 4:49 AM, james_027 <[email protected]> wrote:
> Hi all,
>
> Sorry if this post doesn't seems to be appropriate, but I can't submit
> links to digg, with this error message by digg "This link does not
> appear to be a working link. Please check the URL and try again." A
> sample link from my GAE site is this
>
>
> http://jamesgae.appspot.com/blog/2010/01/28/blogs-on-the-cloud-creating-your-own-customize-blog
>
> Any ideas?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>
--
Nick Johnson, Developer Programs Engineer, App Engine
Google Ireland Ltd. :: Registered in Dublin, Ireland, Registration Number:
368047
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.