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
It seems that redirects will change the HTTP verb used for a request, thus breaking RESTful interaction.
For example an app that redirects http to https will transform a myapi.fragment.POST() to a myapi.fragment.GET()
It seems that redirects will change the HTTP verb used for a request, thus breaking RESTful interaction.
For example an app that redirects http to https will transform a
myapi.fragment.POST()
to amyapi.fragment.GET()
This is discussed here: http://stackoverflow.com/questions/20475552/python-requests-library-redirect-new-url
Solution:
allow_redirects=False
)The text was updated successfully, but these errors were encountered: