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.

It is my understanding that, I need to use url encoded content for posting with urllib. Is it possible to use application/json content type when posting with urllib?

share|improve this question

1 Answer

up vote 1 down vote accepted

Not with urllib, as you'd need to set the Content-type header, and urllib does not provide a way to do so. You can do it however with urllib2 (but also not with urlopen() wich is more meant to "open files with a url" rather than submitting data):

import urllib2
req = urllib2.Request('http://www.example.com/', data="abc", headers={'Content-type': 'text/plain'})
r = urllib2.urlopen(req)

Personally, I prefer httplib2 (3d party) as a http client library.

share|improve this answer
Should also be mentioned that data must be a string instead of a dictionary – Mihai Stan Sep 2 '11 at 11:15

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.