Kirn
Kirn

Reputation: 524

Can I append additional parameters to an oauth url?

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

Answers (2)

abraham
abraham

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

Stephen Dryden
Stephen Dryden

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

Related Questions