mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
32 lines
826 B
HTML
32 lines
826 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>
|
|
<li>
|
|
Click "APIs & auth" and "Credentials" on the left
|
|
</li>
|
|
<li>
|
|
Click the "Create New Client ID" button
|
|
</li>
|
|
<li>
|
|
Choose "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?close</span>
|
|
</li>
|
|
<li>
|
|
Click "Create Client ID"
|
|
</li>
|
|
</ol>
|
|
</template>
|