How can I register outgoing urlfetch request in python for google platform?

I'm having trouble working with GAE related Python and I suspect this is an outgoing request format. How can I register or in any way view the outgoing request that my devserver does for the oauth provider?

+4
source share
1 answer

You can do this by registering an API call to URLFetch requests. You can see the full contents of the request or response object by registering request.ToASCII() or response.ToASCII()

+4
source

Source: https://habr.com/ru/post/1336917/


All Articles