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:


Loading…
Откажи
Сачувај