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.
 

SSO callback behind firewall

First post
Author
Jen Moriarty
Republic University
Minmatar Republic
#1 - 2014-11-21 09:57:32 UTC
Hi all,

I'm sure I'm not the only one encountering this problem, so I'm wondering how you guys handle it. When trying to develop an SSO-based site, I use a local cygwin implementation of the site then upload everything when I'm done. Problem is - the SSO callback cannot call back to my machine as I'm behind my router's and windows' firewall. And opening both for outside http requests sounds unwise. How do you guys solve this issue?

Jen
Kali Izia
GoomWaffe
#2 - 2014-11-21 11:17:42 UTC
Why wouldn't that work? CCP's servers don't need to be able to access your callback URL, it just sends a Location redirect.
Just create a new client with the local URL as the callback and use that for testing.
CCP FoxFour
C C P
C C P Alliance
#3 - 2014-11-21 12:11:34 UTC
The SSO redirect just tells your browser where to go. This means you often have a client for dev and an client for prod. Dev often redirects to localhost:5000 (or whatever port you use) and prod redirects to your hosted environment.

@CCP_FoxFour // Technical Designer // Team Tech Co

Third-party developer? Check out the official developers site for dev blogs, resources, and more.

Jen Moriarty
Republic University
Minmatar Republic
#4 - 2014-11-21 13:52:26 UTC
Thank you!