From 750c872839e7a289ef059123141434d9185726eb Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 25 Mar 2014 13:36:47 -0700 Subject: [PATCH] Update Google auth documentation to discuss "Google+ API" and new console URI Summary: Fixes T4451. See also D8612. Test Plan: Viewed panel and read text, saw it matched up with the new console. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4451 Differential Revision: https://secure.phabricator.com/D8613 --- .../PhabricatorAuthProviderOAuthGoogle.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/applications/auth/provider/PhabricatorAuthProviderOAuthGoogle.php b/src/applications/auth/provider/PhabricatorAuthProviderOAuthGoogle.php index 6815032e6f..5fbf340ffc 100644 --- a/src/applications/auth/provider/PhabricatorAuthProviderOAuthGoogle.php +++ b/src/applications/auth/provider/PhabricatorAuthProviderOAuthGoogle.php @@ -13,18 +13,20 @@ final class PhabricatorAuthProviderOAuthGoogle return pht( "To configure Google OAuth, create a new 'API Project' here:". "\n\n". - "https://code.google.com/apis/console/". + "https://console.developers.google.com/". "\n\n". - "You don't need to enable any Services, just go to **API Access**, ". - "click **Create an OAuth 2.0 client ID...**, and configure these ". - "settings:". + "Adjust these configuration settings for your project:". "\n\n". - " - During initial setup click **More Options** (or after creating ". - " the client ID, click **Edit Settings...**), then add this to ". - " **Authorized Redirect URIs**: `%s`\n". + " - Under **APIs & auth > APIs**, scroll down the list and enable ". + " the **Google+ API**.\n". + " - Under **APIs & auth > Credentials**, click **Create New Client". + " ID** in the **OAuth** section. Then use these settings:\n". + " - **Application Type**: Web Application\n". + " - **Authorized Javascript origins**: Leave this empty.\n". + " - **Authorized redirect URI**: Set this to `%s`.\n". "\n\n". "After completing configuration, copy the **Client ID** and ". - "**Client Secret** to the fields above.", + "**Client Secret** from the Google console to the fields above.", $login_uri); }