I figured it out. The way to sign requests is as fuzzy as the login authorization.
You need to generate oauth_signature on the following parameters
Next, prepare the header body.
<тело> = "oauth_nonce=" + oauth_nonce + "," +
"oauth_signature_method=" + oauth_signature_method + "," +
"oauth_token=" + urlencode(oauth_token) + "," +
"oauth_timestamp=" + oauth_timestamp + "," +
"oauth_consumer_key=" + oauth_consumer_key + "," +
"oauth_signature=" + urlencode(oauth_signature) + "," +
"oauth_version=" + oauth_version
Attention! It's kind of not necessary, but I framed each value with quotes.
- Add the header "Authorization: <body>" and send the request
If you have questions - ask
`