LavishSoftware / ISBoxerEVELauncher

An EVE Launcher supporting Inner Space and ISBoxer, and directly launching EVE. Secure password storage and 2fa
MIT License
28 stars 25 forks source link

Launcher Auth Token Invalid #28

Open robohunterx opened 5 years ago

robohunterx commented 5 years ago

"The authentication token provided by the launcher is of an invalid format. Please try again or contact EVE customer support." -- It would seem with the new CCP launcher update, that I'm no longer able to launch using the ISB EVE launcher.

LairaOhtar commented 5 years ago

Same here...

robohunterx commented 5 years ago

http://isboxer.com/forum/viewtopic.php?f=8&t=9629&p=45991#p45991 Looks like they are well aware of the issue.

"So our initial analysis indicates some changes were made to the login process that would take some time (multiple days at minimum) to duplicate and support in ISBoxer EVE Launcher. I'm not sure I have that kind of time to spend on ISBEL at the moment."

It sounds like we could be holding for a while, rip

stcktrce commented 5 years ago

The new launcher uses the new SSO implementation referenced here: https://github.com/esi/esi-docs/blob/master/docs/sso/native_sso_flow.md

with the following scopes.

You'll receive a JWT token after authenticating properly, that should decode to something like this.

{
    "scp": [
        "eveClientLogin",
        "eveClientToken"
    ],
    "jti": "xxxx",
    "kid": "JWT-Signature-Key",
    "sub": "USER:EVE:xxxx",
    "azp": "eveLauncherTQ",
    "name": "xxxx",
    "exp": xxxx,
    "iss": "login.eveonline.com"
}