getResourceOwnerAuthorizationURI method

String getResourceOwnerAuthorizationURI(
  1. String temporaryCredentialsIdentifier
)

Get resource owner authorization URI. http://tools.ietf.org/html/rfc5849#section-2.2

Implementation

String getResourceOwnerAuthorizationURI(String temporaryCredentialsIdentifier) {
  return _platform.resourceOwnerAuthorizationURI + '?oauth_token=' + Uri.encodeComponent(temporaryCredentialsIdentifier);
}