Google

Cloud CMS provides integrated authentication and single-sign-on (SSO) with Google.

This page describes the authentication provider available for the Cloud CMS Application Server that enables your mobile or web applications as well as the Cloud CMS user interface or API to authenticate against Google.

For more information on Authentication within the App Server, see App Server Authentication / SSO.

Google API Keys

You will need to configure a Google application and have the following information available:

  • 'clientID' - the Google App ID
  • 'clientSecret' - the Google App secret

Configuration

Here is a simple configuration where we provide our API Keys and fallback on the defaults for everything else.

"auth": {
    "enabled": true,
    "providers": {
        "myProvider": {
            "type": "twitter",
            "config": {
                "clientID": "{Google App ID}",
                "clientSecret": "{Google App Secret}"
            }
        }
    }
}