- Introduction
- Prerequisites
- Register the application
- Build and run the sample
- Code of note
- Questions and comments
- Contributing
- Additional resources
This sample shows how to connect an Angular app to a Microsoft work or school (Azure Active Directory) or personal (Microsoft) account using the Microsoft Graph API to send an email. In addition, the sample uses the Office Fabric UI for styling and formatting the user experience.
![Microsoft Graph Connect sample screenshot](./README assets/screenshot.png)
To use the Microsoft Graph Connect sample for Angular, you need the following:
-
Node.js. Node is required to run the sample on a development server and to install dependencies.
-
Either a Microsoft account or Office 365 for business account
-
Sign into the App Registration Portal using either your personal or work or school account.
-
Choose Add an app.
-
Enter a name for the app, and choose Create application.
The registration page displays, listing the properties of your app.
-
Copy the Application Id. This is the unique identifier for your app.
-
Under Platforms, choose Add Platform.
-
Choose Web.
-
Make sure the Allow Implicit Flow check box is selected, and enter http://localhost:8080/login as the Redirect URI.
-
Choose Save.
-
Download or clone the Microsoft Graph Connect Sample for Angular.
-
Using your favorite IDE, open config.js in public/scripts.
-
Replace the clientId placeholder value with the application ID of your registered Azure application.
-
In a command prompt, run the following command in the root directory of the starter project. This installs project dependencies and the Hello.js client-side authententication library.
npm install
-
Run
npm start
to start the development server. -
Navigate to
http://localhost:8080
in your web browser. -
Choose the Connect button.
-
Sign in with your personal or work or school account and grant the requested permissions.
-
Optionally edit the recipient's email address, and then choose the Send mail button. When the mail is sent, a Success message is displayed below the button.
If you'd like to contribute to this sample, see CONTRIBUTING.MD.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
We'd love to get your feedback about this sample. You can send your questions and suggestions in the Issues section of this repository.
Questions about Microsoft Graph development in general should be posted to Stack Overflow. Make sure that your questions or comments are tagged with [microsoftgraph].
Copyright (c) 2016 Microsoft. All rights reserved.