MicrosoftLiveConnectApi constructor

MicrosoftLiveConnectApi(
  1. String identifier,
  2. String clientId,
  3. String clientSecret,
  4. String redirectUrl, {
  5. List<String>? scopes,
  6. Client? client,
  7. Converter? converter,
  8. AuthStorage? authStorage,
})

Implementation

MicrosoftLiveConnectApi(String identifier, String clientId,
    String clientSecret, String redirectUrl,
    {List<String>? scopes,
    http.Client? client,
    Converter? converter,
    AuthStorage? authStorage})
    : super.fromIdAndSecret(identifier, clientId, clientSecret,
          client: client,
          scopes: scopes,
          converter: converter,
          authStorage: authStorage) {
  this.tokenUrl = "https://login.live.com/oauth20_token.srf";
  this.authorizationUrl = "https://api.instagram.com/oauth/authorize";
  this.redirectUrl = redirectUrl;
  this.scopes = scopes ?? ["basic"];
}