Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

[DEPRECATED]An Android app showcasing how to use MSAL to authenticate MSA and Azure AD via the converged v2.0 authentication endpoint, and access the Microsoft Graph with the resulting token.

License

Notifications You must be signed in to change notification settings

Azure-Samples/ms-identity-android-native

Repository files navigation

languages page_type description products urlFragment
java
sample
The MSAL Android preview gives your app the ability to begin using the Microsoft identity platform.
azure
azure-active-directory
ms-graph
msal-android-app

MSAL Android app calling Microsoft Graph

Important

DEPRECATED - Please see new Samples for MSAL 1.0

Getting Started Library API Reference Support

Build Badge

The MSAL Android preview gives your app the ability to begin using the Microsoft identity platform by supporting Microsoft Azure Active Directory and Microsoft Accounts in a converged experience using industry standard OAuth2 and OpenID Connect. This sample demonstrates all the normal lifecycles your application should experience, including:

  • Get a token for the Microsoft Graph
  • Device-wide SSO and Conditional Access suport through the Auth Broker
  • Refresh tokens automatically
  • Call the Microsoft Graph
  • Sign out the user

Scenario

This app is a multi-tenant app meaning it can be used by any Azure AD tenant or Microsoft Account. It demonstrates how a developer can build apps to connect with enterprise users and access their Azure + O365 data via the Microsoft Graph. During the auth flow, end users will be required to sign in and consent to the permissions of the application, and in some cases may require an admin to consent to the app. The majority of the logic in this sample shows how to auth an end user and make a basic call to the Microsoft Graph.

Topology

Example

// Initialize your app with MSAL
PublicClientApplication pApp = new PublicClientApplication(
            this.getApplicationContext(),
            R.raw.auth_config);

// Perform authentication requests
pApp.acquireToken(getActivity(), SCOPES, getAuthInteractiveCallback());

// ...

// Get tokens to call APIs like the Microsoft Graph
authenticationResult.getAccessToken();

Register your App

To begin registering your app, begin at the Azure portal

To create an app,

  1. Click New Registration.

  2. Name your app, select the audience you're targeting, and click Register.

    • This sample is focused on Accounts in any organization and personal Microsoft accounts, but can be modified to support any audience.
    • Do not register a Redirect URI.
  3. Click Authentication > Add Platform > Android.

    • Enter the Package Name from your Android studio project.
    • Generate a Signature Hash. Refer to the portal for instructions.
  4. Hit the Configured button. Store the MSAL Configuration for the next steps.

Steps to Run

  1. Clone the code.

    git clone https://github.com/Azure-Samples/active-directory-android-native-v2 
    
  2. Open Android Studio, and select open an existing Android Studio project. Find the cloned project and open it.

  3. Configure the sample code in auth_config.JSON and AndroidManifest.xml.

    • Copy and paste the MSAL Configuration JSON from the Azure portal into auth_config.JSON.
    • Inside the AndroidManifest.xml, replace android:host and android:path with the same info registered above.
      • auth_config.JSON contains this information as a reference inside the redirect_uri field.
      • The Signature Hash should NOT be URL encoded in the AndroidManifest.xml.
  4. Select Build > Clean Project.

  5. Select Run > Run 'app'.

Feedback, Community Help, and Support

We use Stack Overflow with the community to provide support. We highly recommend you ask your questions on Stack Overflow first and browse existing issues to see if someone has asked your question before.

If you find and bug or have a feature request, please raise the issue on GitHub Issues.

To provide a recommendation, visit our User Voice page.

Contribute

We enthusiastically welcome contributions and feedback. You can clone the repo and start contributing now. Read our Contribution Guide for more information.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Security Library

This library controls how users sign-in and access services. We recommend you always take the latest version of our library in your app when possible. We use semantic versioning so you can control the risk associated with updating your app. As an example, always downloading the latest minor version number (e.g. x.y.x) ensures you get the latest security and feature enhanements but our API surface remains the same. You can always see the latest version and release notes under the Releases tab of GitHub.

Security Reporting

If you find a security issue with our libraries or services please report it to secure@microsoft.com with as much detail as possible. Your submission may be eligible for a bounty through the Microsoft Bounty program. Please do not post security issues to GitHub Issues or any other public site. We will contact you shortly upon receiving the information. We encourage you to get notifications of when security incidents occur by visiting this page and subscribing to Security Advisory Alerts.

About

[DEPRECATED]An Android app showcasing how to use MSAL to authenticate MSA and Azure AD via the converged v2.0 authentication endpoint, and access the Microsoft Graph with the resulting token.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages