Ben Kurtovic преди 7 години
родител
ревизия
7af344b00a
променени са 1 файла, в които са добавени 2 реда и са изтрити 5 реда
  1. +2
    -5
      calefaction/eve/sso.py

+ 2
- 5
calefaction/eve/sso.py Целия файл

@@ -44,13 +44,10 @@ class SSOManager:
in a sensible way or looks to be down.
"""
url = "https://login.eveonline.com/oauth/token"
params = {}
if refresh:
params["grant_type"] = "refresh_token"
params["code"] = code
params = {"grant_type": "refresh_token", "refresh_token": code}
else:
params["grant_type"] = "authorization_code"
params["refresh_token"] = code
params = {"grant_type": "authorization_code", "code": code}
self._debug("[POST] /oauth/token")

try:


Зареждане…
Отказ
Запис