services | platforms | author |
---|---|---|
active-directory |
Javascript |
dadobali |
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.
- Install hello.js.
npm install -g bower
bower install hello
-
Register your Azure AD v2.0 app.
- Navigate to the App Registration Portal.
- Go to the the
My Apps
page, clickAdd an App
, and name your app. - Set a platform by clicking
Add Platform
, selectWeb
, and add a Redirect URI ofhttp://localhost:8000/redirect.html
.
-
Clone the code.
git clone https://github.com/danieldobalian/v2jsapp.git
-
Inside index.html, set your application/client id from the App Registration Portal.
-
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
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.
This sample was adapted from the hello.js templates. Thanks to Brandon Werner for doing the initial testing and preparing much of the code.