Requests-OAuthlib Documentation

>>> r=requests.post(url=request_token_url, auth=oauth) ... signature_type='body') r=requests.post(url, auth=bodyoauth) 3.1.3Signature types - HMAC (most common), RSA, Plaintext OAuth1 defaults to using HMAC and examples can be found in the previous sections. Plaintext work on the same credentials as HMAC and the only change you will need to make when using it is to add signature_type ... ................
................