Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using this code to create an upload post request.

The only problem is that the session does not get attached to the request. How can I attach the session to this request so I can check session attributes when I process the request.

Code so far:

String urlStr = BlobstoreServiceFactory.getBlobstoreService().createUploadUrl("/upload");
URLFetchService urlFetch = URLFetchServiceFactory.getURLFetchService();
HTTPRequest req = new HTTPRequest(new URL(urlStr), HTTPMethod.POST);

String boundary = makeBoundary();

req.addHeader(new HTTPHeader("Content-Type","multipart/form-data; boundary=" + boundary));
ByteArrayOutputStream baos = new ByteArrayOutputStream();

write(baos, "--"+boundary+"\r\n");
writeParameter(baos, "id", id);
write(baos, "--"+boundary+"\r\n");
writeImage(baos, cmd, imageBytes);
write(baos, "--"+boundary+"--\r\n");

req.setPayload(baos.toByteArray());
share|improve this question
have you tried adding the JSESSIONID or SESSIONID to your url ? – BigMike Jan 24 at 23:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.