getAuthenticationUrl method

String getAuthenticationUrl()

Implementation

String getAuthenticationUrl() {
  return Uri.parse(
    'https://login.microsoftonline.com/consumers/oauth2/v2.0/authorize'
    '?client_id=$clientId'
    '&response_type=code'
    '&redirect_uri=$redirectUri'
    '&scope=${scopes.join('%20')}',
  ).toString();
}