I need to run an HTTP Server in Python to handle a callback from a website which uses OAuth2. I did some search and found that SimpleHTTPServer
or BaseHTTPServer
is what I was looking for.
Which one should I use to only receive a code from a GET
callback? So I just want the code to remain simple.