[+] MS login

This commit is contained in:
Hykilpikonna
2022-08-31 12:51:52 -04:00
parent d70132c04b
commit 3748a83587
4 changed files with 53 additions and 0 deletions
+1
View File
@@ -150,3 +150,4 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/
*.iml
+1
View File
@@ -0,0 +1 @@
ClientID: 5879b901-131e-464b-8499-140db808b27b
+48
View File
@@ -0,0 +1,48 @@
import _thread
import os
import time
import urllib.parse
import webbrowser
from http.server import HTTPServer, BaseHTTPRequestHandler
from io import StringIO
import uvicorn
from fastapi import FastAPI
from ruamel import yaml
app = FastAPI()
def load_config() -> dict:
with open('auth_config.yml') as f:
yml = yaml.safe_load(f)
return yml
config = load_config()
@app.get('/')
def callback(code: str):
print('Login code received!')
return 'Login success!'
def run():
uvicorn.run(app, host="0.0.0.0", port=18275, reload=False)
if __name__ == '__main__':
_thread.start_new_thread(run, ())
url = "https://login.live.com/oauth20_authorize.srf?"
url += urllib.parse.urlencode({
'client_id': config['ClientID'],
'response_type': 'code',
'redirect_uri': 'http://localhost:18275',
'scope': 'XboxLive.signin offline_access',
'state': 'NOT_NEEDED'
})
webbrowser.open(url)
time.sleep(10000000)
+3
View File
@@ -0,0 +1,3 @@
fastapi
uvicorn~=0.18.3
ruamel.yaml