From 126507533446723f1fc01fc6ec9b53b00a8803bb Mon Sep 17 00:00:00 2001 From: Mattia Penna Date: Fri, 9 Oct 2020 19:07:03 +0200 Subject: [PATCH] Update README.md Hello Eddy! Thanks for your plugin it's awesome! I think it would be best not to write "empty", because if you leave it empty it triggers an error while building apps on iOS! Took me an afternoon to debug! Cheers again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4f6854d..52d8c94e 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ Calling `trySilentLogin` is done the same as `login`, except for the function na ```javascript window.plugins.googleplus.trySilentLogin( { - 'scopes': '... ', // optional - space-separated list of scopes, If not included or empty, defaults to `profile` and `email`. + 'scopes': '... ', // optional - space-separated list of scopes, If not included, defaults to `profile` and `email`. 'webClientId': 'client id of the web app/server side', // optional - clientId of your Web application from Credentials settings of your project - On Android, this MUST be included to get an idToken. On iOS, it is not required. 'offline': true, // Optional, but requires the webClientId - if set to true the plugin will also return a serverAuthCode, which can be used to grant offline access to a non-Google server },