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
Often, there are external calls made to a provider in a single request (i.e. exchange code for access token, followed by a profile request for user data). As urllib2 is being used, Connection: close is injected into these requests, requiring a new connection to be established.
urllib2 should be dumped in favour of http[lib].HTTPConnection objects. Features to account for in this issue:
Persistent connections
Connection pooling or automatic closing of open connection if host changes in request URIs
Proxy tunnelling
HTTP and HTTPS connectivity
The text was updated successfully, but these errors were encountered:
Backwards compatible
Often, there are external calls made to a provider in a single request (i.e. exchange code for access token, followed by a profile request for user data). As urllib2 is being used,
Connection: close
is injected into these requests, requiring a new connection to be established.urllib2 should be dumped in favour of http[lib].HTTPConnection objects. Features to account for in this issue:
The text was updated successfully, but these errors were encountered: