Google Access Token Output to Console
Sen66 [2016-07-21 23:24:50]
Google Access Token Output to Console
Added console output of Google Access Token
diff --git a/PokemonGo/RocketAPI/Client.cs b/PokemonGo/RocketAPI/Client.cs
index 859142d..a3d3d51 100644
--- a/PokemonGo/RocketAPI/Client.cs
+++ b/PokemonGo/RocketAPI/Client.cs
@@ -81,7 +81,7 @@ namespace PokemonGo.RocketAPI
{
var tokenResponse = await GoogleLogin.GetAccessToken();
_accessToken = tokenResponse.id_token;
- _settings.GoogleRefreshToken = tokenResponse.access_token;
+ Console.WriteLine($"Put RefreshToken in settings for direct login: {tokenResponse.access_token}");
}
else
{
@@ -393,4 +393,4 @@ namespace PokemonGo.RocketAPI
return updateResponse;
}
}
-}
\ No newline at end of file
+}
You may download the files in Public Git.