You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the same error, both in dev_appserver and in real GAE. I get a feeling it has something to do with the requests library (or urllib3) don't get along with the GAE urlfetch stuff? I've tried to debug it a little and the objects involved looks "HTTPSish" all the way in the requests/urllib3 code until the actual request is made..
In connectionpool.py, and HTTPConnection._make_request(), the "conn" object is of type requests.packages.urllib3.connection.VerifiedHTTPSConnection .. But it looks like then it does the conn.request() call, it does a HTTP request of it anyways;
# conn.request() calls httplib.*.request, not the method in
# urllib3.request. It also calls makefile (recv) on the socket.
conn.request(method, url, **httplib_request_kw)
..it looks like in the github of the requests module that urllib3 has been updated "a month ago".. Could that have broken something with regards to how GAE handles stuff?
i am using de fql function from facebook sdk and this show me the erro:
GraphAPIError: You must use https:// when passing an access token
Help me, please!
The text was updated successfully, but these errors were encountered: