request_token
with the oauth_callback
set to oob
. The term oob
means out-of-band OAuth. The user still visits X to login or authorize the app, but they will not be automatically redirected to the application upon approving access. Instead, they will see a numerical PIN code, with instructions to return to the application and enter this value.
callback_url
within the X app settings is still required, even when using PIN-based auth.oauth_callback
must be set to oob
during the POST oauth/request_token call.
callback_url
, instead they will see a screen with a X generated ~7 digit PIN with directions to enter the PIN into your applications name.
oauth_verifier
in the POST oauth/access_token to obtain an access_token.
access_token
obtained should be used for application-user requests.