Reputation: 524
I need to get data back when the oauth redirect returns from Twitter. Is it possible to append additional parameters to the oauth URL?
Upvotes: 3
Views: 1429
Reputation: 47923
Yes. You can set a callback_url with paramaters when you get a request token and when the user returns to the callback_url the parameters should still be there.
Upvotes: 2
Reputation: 571
Each Twitter resource only accepts certain parameters. Required and optional parameters are listed on the Twitter OAuth resource pages. For example see Public Time line Resource
Upvotes: 0