문제

I'm using passport.js to implement Google OpenID authentication for my webapp. However, I'm not sure what's the best way to specify the returnURL.

Right now I set my server hostname in a config file, like this

server.host = 'http://foo.bar.com:5990'

But hardcoding the server URL there seems silly to me.

Is there any way to tell passport.js or Google OpenID auth to return to the same domain it started from?

도움이 되었습니까?

해결책

Actually, turns out I can just use a relative URL in the returnURL and it will work. :-)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top