Skip to content

Instantly share code, notes, and snippets.

@KenjiOhtsuka
Last active May 25, 2023 10:13
Show Gist options
  • Save KenjiOhtsuka/d3ee2c82d2d936cc4306e43b1cf80a0d to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/d3ee2c82d2d936cc4306e43b1cf80a0d to your computer and use it in GitHub Desktop.
HTTPS Server for Redirection

これは、OAuth 2.x 認証サーバーからのリダイレクトである localhost への HTTPS GET リクエストを受信するために作成された単純なサーバーのコードです。 リダイレクトURIに、SSL/TLS を必要とする HTTPS URL しか登録できない場合に使えます。 server.py は HTTPS GET リクエストを受信すると、パラメータをつけたまま http://localhost にリダイレクトします。

使い方

ステップ1

次のコマンドを実行して暗号化キーを作成します。

openssl req -x509 -new -days 36500 -nodes \
   -keyout localhost.pem \
   -out localhost.pem \
   -subj "/CN=localhost"

ステップ2

次のコマンドを実行してサーバーを起動します。

python server.py

その後、 https://localhost へのアクセスは http://localhost にリダイレクトされます。

This is a simple server code created for receiving HTTPS GET request to localhost, which is redirection from OAuth 2.x Authentication Server.

This is for the time when the server accepts and you can register only HTTPS URL for the redirect_uri, which requires SSL/TLS.

server.py receives HTTPS GET requests and redirect it with parameters to http://localhost

How to Use

Step 1

Run the following command to create the encryption key.

openssl req -x509 -new -days 36500 -nodes \
  -keyout localhost.pem \
  -out localhost.pem \
  -subj "/CN=localhost"

Step 2

Run the following command to launch the server.

python server.py

Then your access to https://localhost is redirected to http://localhost.

import ssl
from http.server import HTTPServer, SimpleHTTPRequestHandler
PORT = 443
CERTFILE = "./localhost.pem"
class Handler(SimpleHTTPRequestHandler):
def do_GET(self):
self.send_response(301)
self.send_header('Location', 'http://localhost' + self.path)
self.end_headers()
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
context.load_cert_chain(CERTFILE)
with HTTPServer(("", PORT), Handler) as httpd:
httpd.socket = context.wrap_socket(httpd.socket, server_side=True)
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment