Exemplo n.º 1
0
 void GetAuthTokens(NavigationEventArgs args)
 {
     if (args.Uri.ToString().StartsWith("https://www.google"))
     {
         var token = _client.GetAccessToken();
         Key              = token.Token;
         Secret           = token.Secret;
         HasAuthenticated = true;
         DropBoxHelper.CloseAndSave(this);
     }
 }