diff --git a/_includes/parse-server/third-party-auth.md b/_includes/parse-server/third-party-auth.md index 60982dee5..a444bb085 100644 --- a/_includes/parse-server/third-party-auth.md +++ b/_includes/parse-server/third-party-auth.md @@ -22,7 +22,7 @@ Parse Server supports 3rd party authentication with * WeChat * Weibo -Configuration options for these 3rd-party modules is done with the `auth` option passed to Parse Server: +Configuration options for these 3rd-party modules is done with the `auth` option passed to Parse Server during initialization: ```js { @@ -33,6 +33,9 @@ Configuration options for these 3rd-party modules is done with the `auth` option }, facebook: { appIds: "FACEBOOK APP ID" + }, + google: { + clientId: 'X-X.apps.googleusercontent.com' // REQUIRED If you opt in on using Google OAuth for your application } } }