authorizeUrl

fun OAuth.authorizeUrl(    requestToken: String,     forceLogin: Boolean? = null,     screenName: String? = null,     vararg options: Option): Url

Allows a Consumer application to use an OAuth Request Token to request user authorization. This method fulfills Section 6.2 of the OAuth 1.0 authentication flow. Desktop applications must use this method (and cannot use GET oauth/authenticate. Usage Note: An oauth_callback is never sent to this method, provide it to POST oauth/request_token instead.

Twitter API reference

Receiver

OAuth endpoint instance.

Return

Url.

Parameters

forceLogin

Forces the user to enter their credentials to ensure the correct users account is authorized.

screenName

Prefills the username input box of the OAuth login screen with the given value.

options

Optional. Custom parameters of this request.