https://github.com/hajekj/azure-functions-dotnet-worker-miw
DEMO: Azure AD and Microsoft Graph with Azure Functions Out-of-Process hosting model.
https://github.com/hajekj/azure-functions-dotnet-worker-miw
azure azure-functions azuread dotnet
Last synced: 7 months ago
JSON representation
DEMO: Azure AD and Microsoft Graph with Azure Functions Out-of-Process hosting model.
- Host: GitHub
- URL: https://github.com/hajekj/azure-functions-dotnet-worker-miw
- Owner: hajekj
- Created: 2021-04-22T12:51:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-11T20:27:20.000Z (over 1 year ago)
- Last Synced: 2025-02-27T23:29:58.847Z (7 months ago)
- Topics: azure, azure-functions, azuread, dotnet
- Language: C#
- Homepage: https://hajekj.net/2021/04/22/azure-functions-out-of-process-and-authentication-with-azure-ad/
- Size: 11.7 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This example accompanies a blog post on https://hajekj.net
The purpose is to demonstrate use of Azure AD and Microsoft Graph with Azure Functions Out-of-Process hosting model.
To run this sample, make sure to have user secrets set followingly:
```json
{
"AzureAd:ClientId": "",
"AzureAd:ClientSecret": "",
"AzureAd:Instance": "https://login.microsoftonline.com/",
"AzureAd:TenantId": ""
}
```