GetOAuthAuthorizationURL
Gets the authorization URL, AuthToken, and AuthKey from Twitter. Navigate to the authorization URL in an Internet browser. This will return a verifier token that you will need to use as input along with the AuthToken for the GetOAuthAccessToken stored procedure.
Input
Name | Type | Description |
CallbackURL | String | The URL that Twitter will return to after the user has authorized your app. |
State | String | Any value that you wish to be sent with the callback. |
Result Set Columns
Name | Type | Description |
URL | String | The URL to be entered into a Web browser to obtain the verifier token and authorize your Twitter app with. |
AuthToken | String | A token used as input for the GetOAuthAccessToken stored procedure to verify the request and obtain the OAuth access token. |
AuthKey | String | A key used as input for the GetOAuthAccessToken stored procedure to verify the request and obtain the OAuth access token. |