public string CreateAuthorizeRequest(string state,bool isAdmin, OAuth2Scope scopes) { return CreateAuthorizeRequest(state, isAdmin, scopes.ToStringArray()); }
public OAuth2TokenResponse GetAccessTokenFromUserKey(string userKey, string state, OAuth2Scope scopes) { return GetAccessTokenFromUserKey(userKey, state, scopes.ToStringArray()); }
public OAuth2TokenResponse GetAccessTokenForInvitee(string firstname, string lastname, string email, OAuth2Scope scopes) { return GetAccessTokenForInvitee(firstname, lastname, email, scopes.ToStringArray()); }