Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 3.85 KB

app-service-mobile-how-to-configure-twitter-authentication.md

File metadata and controls

65 lines (50 loc) · 3.85 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
How to configure Twitter authentication for your App Services application
Learn how to configure Twitter authentication for your App Services application.
app-service
mattchenderson
erikre
c6dc91d7-30f6-448c-9f2d-8e91104cde73
app-service-mobile
mobile
na
multiple
article
10/01/2016
mahender

How to configure your App Service application to use Twitter login

[!INCLUDE app-service-mobile-selector-authentication]

This topic shows you how to configure Azure App Service to use Twitter as an authentication provider.

To complete the procedure in this topic, you must have a Twitter account that has a verified email address and phone number. To create a new Twitter account, go to twitter.com.

Register your application with Twitter

  1. Log on to the Azure portal, and navigate to your application. Copy your URL. You will use this to configure your Twitter app.

  2. Navigate to the Twitter Developers website, sign in with your Twitter account credentials, and click Create New App.

  3. Type in the Name and a Description for your new app. Paste in your application's URL for the Website value. Then, for the Callback URL, paste the Callback URL you copied earlier. This is your Mobile App gateway appended with the path, /.auth/login/twitter/callback. For example, https://contoso.azurewebsites.net/.auth/login/twitter/callback. Make sure that you are using the HTTPS scheme.

  4. At the bottom the page, read and accept the terms. Then click Create your Twitter application. This registers the app displays the application details.

  5. Click the Settings tab, check Allow this application to be used to sign in with Twitter, then click Update Settings.

  6. Select the Keys and Access Tokens tab. Make a note of the values of Consumer Key (API Key) and Consumer secret (API Secret).

    [!NOTE] The consumer secret is an important security credential. Do not share this secret with anyone or distribute it with your app.

Add Twitter information to your application

  1. Back in the Azure portal, navigate to your application. Click Settings, and then Authentication / Authorization.

  2. If the Authentication / Authorization feature is not enabled, turn the switch to On.

  3. Click Twitter. Paste in the App ID and App Secret values which you obtained previously. Then click OK.

    By default, App Service provides authentication but does not restrict authorized access to your site content and APIs. You must authorize users in your app code.

  4. (Optional) To restrict access to your site to only users authenticated by Twitter, set Action to take when request is not authenticated to Twitter. This requires that all requests be authenticated, and all unauthenticated requests are redirected to Twitter for authentication.

  5. Click Save.

You are now ready to use Twitter for authentication in your app.

Related Content

[!INCLUDE app-service-mobile-related-content-get-started-users]