Select theme:
This tutorial will show you how to connect to Microsoft Graph data using Azure AD authentication.
Create new application at https://apps.dev.microsoft.com, add Web platform with Allow Implicit Flow enabled, set Redirect URLs to http://localhost:8000/
and add user.read
permission.
Create a new Radzen application by following the first step from the quickstart guide.
In this step we create a data source that connects to a Microsoft Graph data.
https://graph.microsoft.com/v1.0/
), Authorization URL (https://login.microsoftonline.com/common/oauth2/v2.0/authorize
), ClientID for the application created at (https://apps.dev.microsoft.com) and scopes (user.read
). For this example we are using common tenant, the Authorization URL for other tenant will be https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize
Radzen is free to use. You can also test the premium features for 15 days.
Download NowSelect theme: