Linked Questions
10 questions linked to/from Can Python Requests library be used on Google App Engine?
21
votes
3
answers
27k
views
SSLError: Can't connect to HTTPS URL because the SSL module is not available on google app engine
Want to use wechat sdk to create menu
WeChat.create_menu({
"button":[
{
"type":"click",
"name":"Daily Song",
"key":"V1001_TODAY_MUSIC"
},
{
...
24
votes
3
answers
13k
views
Using the Requests python library in Google App Engine
I'm trying to use the awesome Requests library on Google App Engine. I found a patch for urllib3, which requests relies on, that is compatible with App Engine. https://github.com/shazow/urllib3/issues/...
4
votes
2
answers
3k
views
TypeError: expected httplib.Message, got <type 'instance'>. when using requests.get(url) on GAE
My aim is to build a web crawler and host it on GAE. However,when I try to execute a very basic implementation I get the following error:
Traceback (most recent call last):
File "C:\Program ...
2
votes
2
answers
2k
views
Permission Denied Error When opening Socket to APNS on Google AppEngine Development
I'm trying to make my app engine server send APNS notifications, and for that I'm using template code I got from this project (which is said to work, so it's possible):
https://github.com/...
4
votes
2
answers
799
views
Firebase Auth verify_id_token error "super(type, obj): obj must be an instance or subtype of type"
Trying to use firebase auth as the authentication system. I have read through the verify ID token docs and went through the Firebase SDK Setup. Using GAE and Datastore as backend, Python and webapp2 ...
2
votes
1
answer
1k
views
Verifying firebase auth token permission denied
Following the directions in the google docs for using firebase for auth in GAE, I am sending an authorization token from Android to my backend python server. Reading that token using the following ...
1
vote
2
answers
522
views
Fetch firebase user info from AppEngine application
We are testing with Firebase Authentication, and we're checking out python SDK.
Attempting a simple get user operation from our Firebase users results in the following error:
TransportError: ...
0
votes
0
answers
319
views
URLFetch Sessions GAE
I am working on a web scraping project and chosen google app engine to host the script .
I am stucked in sessions . I have written the script using request module but since google appengine doesn't ...
0
votes
1
answer
244
views
How do you perform HTTP requests from App Engine to internal services?
I have an App Engine Standard (1st Gen) Python app, set up with serverless VPC access. I use requests 2.3 (I have issues with later versions on GAE) to do HTTP requests.
When I try doing an HTTP ...
2
votes
1
answer
63
views
Porting Basic Script on Google App Engine
I came across google app engine a week ago and wanted to play around with
it a bit. I wrote a dummy application which checks a url and based on
the return code it logs to a file if the site is "up" or ...