コード例 #1
0
 public void FetchAuthCodeAsync(string oauthUrl, Platform.IAuthCodeHandler handler)
 {
     // Platform needs app to get an MSA auth_code.
     // Need to sign in user via OAuth for given url.
     Platform.InvokeFetchAuthCode(oauthUrl, handler);
 }
コード例 #2
0
 internal static void InvokeFetchAuthCode(string oauthUrl, Platform.IAuthCodeHandler handler)
 {
     _handler = handler;
     FetchAuthCode?.Invoke(oauthUrl);
 }