Files
meteor/packages/google/google_configure.html
David Greenspan 084ee3bf4f Merge branch 'devel' into shark
# 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.
2014-03-06 16:21:33 -08:00

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 &amp; 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>