Created
September 12, 2017 11:48
-
-
Save zweizeichen/b75ab54104df3479cf4ef821e0f8de49 to your computer and use it in GitHub Desktop.
ESI Token fetching script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1) Configure below | |
# 2) pip install esipy Flask | |
# 3) FLASK_APP=tokenfetcher.py flask run | |
# 4) Wait a couple of seconds for the browser to open | |
import webbrowser | |
from esipy import App | |
from esipy import EsiClient | |
from esipy import EsiSecurity | |
from flask import Flask, request | |
CLIENT_ID = '' | |
SECRET_KEY = '' | |
SCOPES = ['esi-universe.read_structures.v1', 'esi-markets.structure_markets.v1'] | |
app = Flask(__name__) | |
esi_app = App.create(url="https://esi.tech.ccp.is/latest/swagger.json?datasource=tranquility") | |
security = EsiSecurity( | |
app=esi_app, | |
redirect_uri='http://127.0.0.1:5000/ESICallback', | |
client_id=CLIENT_ID, | |
secret_key=SECRET_KEY | |
) | |
client = EsiClient( | |
retry_requests=True, | |
header={'User-Agent': 'ESI Token Fetcher'}, | |
security=security | |
) | |
webbrowser.open_new(security.get_auth_uri(scopes=SCOPES)) | |
@app.route('/ESICallback') | |
def esi_callback(): | |
code = request.args.get('code', '') | |
if code: | |
tokens = security.auth(code) | |
return str(tokens) | |
else: | |
return 'No code returned!' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment