Files
meteor/packages/google/google_configure.html
Simon Kågedal Reimer ee60211033 Add note to enter email address.
Unless you enter an email address, the signin will fail and an
error message will be displayed on the consent screen.
2015-04-21 14:01:59 -07:00

29 lines
1000 B
HTML

<template name="configureLoginServiceDialogForGoogle">
<p>
First, you'll need to get a Google Client ID. Follow these steps:
</p>
<ol>
<li>
Visit <a href="https://console.developers.google.com/" target="blank">https://console.developers.google.com/</a>
</li>
<li>
"Create Project", if needed. Wait for Google to finish provisioning.
</li>
<li>
On the left sidebar, go to "APIs &amp; auth" and, underneath, "Consent Screen". Make sure to enter an email address and a product name, and save.
</li>
<li>
On the left sidebar, go to "APIs &amp; auth" and then, "Credentials". "Create New Client ID", then select "Web application" as the type.
</li>
<li>
Set Authorized Javascript Origins to: <span class="url">{{siteUrl}}</span>
</li>
<li>
Set Authorized Redirect URI to: <span class="url">{{siteUrl}}_oauth/google</span>
</li>
<li>
Finish by clicking "Create Client ID".
</li>
</ol>
</template>