Hello everyone,

I am trying to make an HTTP request (to a non-Wave server) containing
an Authorization header using a Wave Robot. The header is already
present and proved to be correct (by a separate PHP script). For the
request itself, I am using the low-level Fetch URL API. However, when
I set the header using

HTTPRequest req = new HTTPRequest(
        urlObj,
        type
);

HTTPHeader authorization = new HTTPHeader(
        "Authorization",
        authHeader
);

I get a response as if no header has been sent at all. The Auth Header
is quite big in size (> 1000 chars). Could this be the reason for my
problem? And is there a fix?

Thanks a lot for your help!

--Max

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" 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-java?hl=en.

Reply via email to