Merge pull request #6 from Sen66/patch-1

Detective Squirrel [2016-07-21 23:40:55]
Merge pull request #6 from Sen66/patch-1

Google Access Token Output to Console
Filename
PokemonGo/RocketAPI/Client.cs
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.