mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
34 lines
862 B
HTML
34 lines
862 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://code.google.com/apis/console/" target="blank">https://code.google.com/apis/console/</a>
|
|
</li>
|
|
<li>
|
|
If necessary, "Create Project"
|
|
<li>
|
|
Open the "API Access" tab on the left
|
|
</li>
|
|
<li>
|
|
Create another Client ID
|
|
</li>
|
|
<li>
|
|
Choose "Web application" as the type
|
|
</li>
|
|
<li>
|
|
Click "More options…" after "Your site or hostname"
|
|
</li>
|
|
<li>
|
|
Set Authorized Redirect URIs to: <span class="url">{{siteUrl}}_oauth/google?close</span>
|
|
</li>
|
|
<li>
|
|
Set Authorized JavaScript Origins to: <span class="url">{{siteUrl}}</span>
|
|
</li>
|
|
<li>
|
|
Create client ID
|
|
</li>
|
|
</ol>
|
|
</template>
|