We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3eed63 commit 3902ce3Copy full SHA for 3902ce3
1 file changed
example.py
@@ -59,7 +59,9 @@ def do_GET(self):
59
return
60
61
url = AuthRequest.create(**self.settings)
62
- self.send_response(301)
+ self.send_response(302)
63
+ self.send_header("Cache-Control", "no-cache, no-store")
64
+ self.send_header("Pragma", "no-cache")
65
self.send_header("Location", url)
66
self.end_headers()
67
0 commit comments