Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm implementing the oauth php server as described here:

http://code.google.com/p/oauth-php/wiki/ServerHowTo

My problem is with the authorize.php controller. If the user is not logged in to the oauth provider, as required for them to auhorize the request token, I need to take them through my login process, however when I return to the authorization page it has lost the request token that was originally being submitted for authorization.

Does anybody have an idea of the best workflow for this? Do i simply pass all the query parameters received thought the whole process? Are there any security concerns or other gotchas with doing this manually. Is there perhaps an existing demo that shows how this is done.

Cheers

share|improve this question

1 Answer

up vote 2 down vote accepted

If the user is not logged in to the oauth provider, as required for them to auhorize the request token, I need to take them through my login process, however when I return to the authorization page it has lost the request token that was originally being submitted for authorization.

Stick it (and any other data you need that might get lost) in their session before you redirect them through your login mechanism, then fetch it once the login has completed and the authorization needs to happen. This eliminates the need to pass it through every form element, at the tiny risk of the user dumping his cookies along the way.

share|improve this answer
Sounds good. Cheers :) – ricick Mar 28 '11 at 2:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.