can curl be used on google app engine ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No. To make HTTP requests, you need to use the urlfetch service. urllib, urllib2, and httplib on App Engine are patched to transparently use this API for you, so any third-party module that does HTTP requests using one of these standard modules will work. The 'c' in cURL is there because the library is written in C; cURL interfaces in other languages (like pycurl) use the libcurl library, and can't be use on App Engine, as modules that reply on C extensions are not allowed. |
||||
|
|
I would recommand using the URL fetch service. For example in python
|
|||
|
|
|
Take a look at Twitter4J http://twitter4j.org/en/index.html - specifically mentions App Engine support. |
|||
|
|