Skip to content

Implementing web flow

Sameer S edited this page Oct 26, 2015 · 3 revisions

When implementing the Web Flow, you might need to set the oAuth verifier value to convert your request token into an access token.

To do this, add the oauth_verifier option to the get_access_token method call on the RequestToken object:

# The verifier will be in your callback URL, which you will see in the browser.
verifier = 'j0Ubj1fEj12QtlQ12AFBB'
request_token.get_access_token oauth_verifier: verifier
Clone this wiki locally