When requesting authorization (or whatever other type of request), should the parameters oauth_tokenand oauth_signature be sent via querystring or by adding them as values in your HttpWebRequest.Header as a NameValueCollection additions to the header?
When requesting authorization (or whatever other type of request), should the parameters oauth_token and
Share
Based on their example ruby code they are looking for it in the header.
The oauth_token and oauth_signature (along with all of the other params that start with oauth_) would all go in the authorization http header as comma seperated name value pairs as shown here https://www.rfc-editor.org/rfc/rfc5849#section-3.5.1
Here’s a quick example using the DevDefined.OAuth library…