mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2025-02-27 17:22:01 +01:00
parent
37a9bb66f1
commit
56b06ca80f
@ -182,6 +182,10 @@ class AuthenticationToken(object):
|
|||||||
req = _make_request(AUTH_SERVER, "validate",
|
req = _make_request(AUTH_SERVER, "validate",
|
||||||
{"accessToken": self.access_token})
|
{"accessToken": self.access_token})
|
||||||
|
|
||||||
|
# Validate returns 204 to indicate success
|
||||||
|
# http://wiki.vg/Authentication#Response_3
|
||||||
|
if req.status_code == 204:
|
||||||
|
return True
|
||||||
if _raise_from_request(req) is None:
|
if _raise_from_request(req) is None:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user