-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenID returnURL fix (Google Hybrid fix) #341
base: master
Are you sure you want to change the base?
Conversation
…defined user when there are multiple tumblelogs associated to the account.
…he existing module to make this one
Readme Fix for Google OAuth2
password was not being deleted.
include smarterer oauth
Changed github apiHost url and fetchOAuthUser to work with github api v3
added provider for dailycred.com
Fixed broken links
Fixed bug in the example code; saving a vimeo user
Added provider for weibo.com
…akinsella-master Conflicts: README.md example/conf.js example/server.js example/views/home.jade
Hi! I fixed some calls to "sys" for you!
corrected a typo in readme code sample
…into jonathana-meetup_oauth2 Conflicts: example/conf.js example/server.js example/views/home.jade
Added yahoohybrid
fix for issue bnoguchi#244 where the tumblr module is returning an undefined user when there are multiple tumblelogs associated to the account.
Rudimentary support for the Facebook Canvas
I had trouble getting this patch to work; verifyAssertion in verifyAttributes (line 37) is failing with "cannot call method verifyAssertion of undefined" I think the relyingParty is not transferring over from sendToAuthenticationURI. Perhaps it's just my implementation, but I think it would be easier just to update the documentation with this one line: .myHostname('localhost:3000') That fixed the issue immediately for me. |
Although now that I think of it, if it could detect hostname automatically that would probably be ideal. |
I had fixed this in express 3 so it may not be compatible. @kyriesent The problem I ran into, was the hostname detection requires a request to be available, but at the time myHostname is set, that request isn't available. I have a fix working in the expres3 branch pull request but it may not in this, may need to revisit. |
The current openId module was creating a RelyingParty with a return URL before a hostname could properly be detected. I delayed the instance created until a request is available, otherwise services like google hybrid does not work.