FETCH_ERROR = 2
It's not very clear what does it means but maybe if you check the code
you can have a better explanation.
But, I've ever seen this and most of the time it is raised by a
timeout, server down,...
Regards
from urlfetch_service_pb.py
class URLFetchServiceError(ProtocolBuffer.ProtocolMessage):
OK = 0
INVALID_URL = 1
FETCH_ERROR = 2
UNSPECIFIED_ERROR = 3
RESPONSE_TOO_LARGE = 4
DEADLINE_EXCEEDED = 5
_ErrorCode_NAMES = {
0: "OK",
1: "INVALID_URL",
2: "FETCH_ERROR",
3: "UNSPECIFIED_ERROR",
4: "RESPONSE_TOO_LARGE",
5: "DEADLINE_EXCEEDED",
}
On 15 avr, 07:43, 风笑雪 <[email protected]> wrote:
> I haven't meet this error, but you can handle it:
> try:
> result = urlfetch.fetch(url)
> except:
> ...
>
> 2009/4/15 Wiiboy <[email protected]>
>
>
>
> > Hi,
> > I'm trying to contact a website using the Python urlfetch api. Using
> > urlfetch.fetch is giving me ApplicationError:2
>
> > What is ApplicationError 2?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---