Reputation: 8216
Is there a way to pass a variable to twitter when you authorized and have it pass it back? For instance when I send them to the oauth page I want to send them with an id and when they return to my confirm page I want to be able to get that id. Is this possible?
Upvotes: 0
Views: 113
Reputation: 14330
Why not set the ID in a cookie (session or otherwise) and then just retrieve it? I mean, that's what cookies are for...
Upvotes: 2
Reputation: 388023
You mean you want to get a response from Twitter when people authorize your (OAuth) application with their account? That's what the OAuth callback is for, you can set it in your application settings on Twitter.
Upvotes: 0