diff --git a/src/applications/auth/provider/PhabricatorAuthProviderOAuthAsana.php b/src/applications/auth/provider/PhabricatorAuthProviderOAuthAsana.php
index 225f3aa18b..e0c4595066 100644
--- a/src/applications/auth/provider/PhabricatorAuthProviderOAuthAsana.php
+++ b/src/applications/auth/provider/PhabricatorAuthProviderOAuthAsana.php
@@ -1,38 +1,38 @@
 <?php
 
 final class PhabricatorAuthProviderOAuthAsana
   extends PhabricatorAuthProviderOAuth {
 
   public function getProviderName() {
     return pht('Asana');
   }
 
   public function getConfigurationHelp() {
     $app_uri = PhabricatorEnv::getProductionURI('/');
     $login_uri = $this->getLoginURI();
 
     return pht(
-      "To configure Asana OAuth, create a new application by logging in to ".
-      "Asana and going to **Account Settings**, then **Apps**, then ".
-      "**Add New Application**.".
+      "To configure Asana OAuth, create a new application here:".
       "\n\n".
-      "Use these settings:".
+      "https://app.asana.com/-/account_api".
+      "\n\n".
+      "When creating your application, use these settings:".
       "\n\n".
       "  - **App URL:** Set this to: `%s`\n".
       "  - **Redirect URL:** Set this to: `%s`".
       "\n\n".
       "After completing configuration, copy the **Client ID** and ".
       "**Client Secret** to the fields above.",
       $app_uri,
       $login_uri);
   }
 
   protected function newOAuthAdapter() {
     return new PhutilAuthAdapterOAuthAsana();
   }
 
   protected function getLoginIcon() {
     return 'Asana';
   }
 
 }