These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

EVE SSO without browser

First post
Author
Cecil B Heimerdinger
Tribal Science Institute
#1 - 2015-06-23 07:17:07 UTC
Is it possible to use SSO on device without web browser? From https://developers.eveonline.com/resource/single-sign-on seems that answer is not, but that just seems to weird to me. I would expect something like https://developers.google.com/identity/protocols/OAuth2ForDevices to exists, but cannot find anything.

Does anyone know of way to use SSO without browser?

Thanks
Pete Butcher
The Scope
Gallente Federation
#2 - 2015-06-23 09:03:24 UTC
Cecil B Heimerdinger wrote:
Is it possible to use SSO on device without web browser? From https://developers.eveonline.com/resource/single-sign-on seems that answer is not, but that just seems to weird to me. I would expect something like https://developers.google.com/identity/protocols/OAuth2ForDevices to exists, but cannot find anything.

Does anyone know of way to use SSO without browser?

Thanks


There are already topics about SSO outside the browser. You can read answers there.

http://evernus.com - the ultimate multiplatform EVE trade tool + nullsec Alliance Market tool

Cecil B Heimerdinger
Tribal Science Institute
#3 - 2015-06-23 11:59:14 UTC
Pete Butcher wrote:
Cecil B Heimerdinger wrote:
Is it possible to use SSO on device without web browser? From https://developers.eveonline.com/resource/single-sign-on seems that answer is not, but that just seems to weird to me. I would expect something like https://developers.google.com/identity/protocols/OAuth2ForDevices to exists, but cannot find anything.

Does anyone know of way to use SSO without browser?

Thanks


There are already topics about SSO outside the browser. You can read answers there.


Not really. Those are topic about desktop apps, meaning there is firefox or something on the same machine. I'm talking about device without browser. Even without X server. Just a ssh. And no, links or w3m doesn't handle eve login page very well.
Steve Ronuken
Fuzzwork Enterprises
Vote Steve Ronuken for CSM
#4 - 2015-06-23 12:26:17 UTC
Cecil B Heimerdinger wrote:
Pete Butcher wrote:
Cecil B Heimerdinger wrote:
Is it possible to use SSO on device without web browser? From https://developers.eveonline.com/resource/single-sign-on seems that answer is not, but that just seems to weird to me. I would expect something like https://developers.google.com/identity/protocols/OAuth2ForDevices to exists, but cannot find anything.

Does anyone know of way to use SSO without browser?

Thanks


There are already topics about SSO outside the browser. You can read answers there.


Not really. Those are topic about desktop apps, meaning there is firefox or something on the same machine. I'm talking about device without browser. Even without X server. Just a ssh. And no, links or w3m doesn't handle eve login page very well.



If you can get a refresh token, then you're set.

That pretty much requires a real auth, though you can do that with something like POSTman for Chrome.

Woo! CSM XI!

Fuzzwork Enterprises

Twitter: @fuzzysteve on Twitter

Pete Butcher
The Scope
Gallente Federation
#5 - 2015-06-23 12:28:12 UTC
Cecil B Heimerdinger wrote:
Pete Butcher wrote:
Cecil B Heimerdinger wrote:
Is it possible to use SSO on device without web browser? From https://developers.eveonline.com/resource/single-sign-on seems that answer is not, but that just seems to weird to me. I would expect something like https://developers.google.com/identity/protocols/OAuth2ForDevices to exists, but cannot find anything.

Does anyone know of way to use SSO without browser?

Thanks


There are already topics about SSO outside the browser. You can read answers there.


Not really. Those are topic about desktop apps, meaning there is firefox or something on the same machine. I'm talking about device without browser. Even without X server. Just a ssh. And no, links or w3m doesn't handle eve login page very well.


That's a bit tougher. Simple answer is acquiring a refresh tokens upfront and using it later. Complex answer is emulating a browser - making http requests with cookie, redirect, etc support.

http://evernus.com - the ultimate multiplatform EVE trade tool + nullsec Alliance Market tool

Cecil B Heimerdinger
Tribal Science Institute
#6 - 2015-06-23 13:31:27 UTC
So from what I read here simplest solutions would be to have dedicated web app which will do SSO and offer download of encrypted refresh_token which then can be used by my shell app to request proper access token? Seems doable. Thanks