Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 2.28 KB

README.md

File metadata and controls

53 lines (36 loc) · 2.28 KB
services platforms author
active-directory
Javascript
dadobali

Sign in Azure AD + MSA Users using Javascript Open Source Library

Note

This sample is using a 3rd party library that has been tested for compatibility in basic scenarios with the v2.0 endpoint. Microsoft does not provide fixes for these libraries and has not done a review of these libraries. Issues and feature requests should be directed to the library's open-source project. Please see this document for more information.

This sample demonstrates how to use Azure AD with a 3rd party Javascript library (hello.js) to do oAuth 2.0 against the v2.0 endpoint. hello.js also provides code for calling web API's which we have preconfigured to support the Microsoft Graph /me endpoint, and have created the structure for future MS Graph calls.

Steps to Run

  1. Install hello.js.
npm install -g bower
bower install hello
  1. Register your Azure AD v2.0 app.

    • Navigate to the App Registration Portal.
    • Go to the the My Apps page, click Add an App, and name your app.
    • Set a platform by clicking Add Platform, select Web, and add a Redirect URI of http://localhost:8000/redirect.html.
  2. Clone the code.

git clone https://github.com/danieldobalian/v2jsapp.git
  1. Inside index.html, set your application/client id from the App Registration Portal.

  2. Run the web app for port 8000, and navigate to http://localhost:8000. If you have Python installed you can run the following command,

python -m SimpleHTTPServer 8000

Questions and Issues

Please file any questions or problems with the sample as a github issue. You can also post on StackOverflow with the tag azure-active-directory. For oAuth2.0 library issues, please see note above.

This sample was tested with hello.js v1.13.5, Google Chrome version 55.0, and macOS 10.11.

Acknowledgements

This sample was adapted from the hello.js templates. Thanks to Brandon Werner for doing the initial testing and preparing much of the code.

hello.js