https://github.com/ealsur/auth0search
Azure Search implementation over Auth0 and Azure DocumentDB using ASP.NET Core
https://github.com/ealsur/auth0search
asp-net-core auth0 azure azure-documentdb azure-search
Last synced: 4 months ago
JSON representation
Azure Search implementation over Auth0 and Azure DocumentDB using ASP.NET Core
- Host: GitHub
- URL: https://github.com/ealsur/auth0search
- Owner: ealsur
- Created: 2016-11-29T02:47:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T23:11:03.000Z (over 9 years ago)
- Last Synced: 2025-10-30T22:29:19.425Z (8 months ago)
- Topics: asp-net-core, auth0, azure, azure-documentdb, azure-search
- Language: C#
- Homepage:
- Size: 44.9 KB
- Stars: 4
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using Azure Search with Auth0 and ASP.NET Core
This repository acts as sample in a scenario where you want to use Azure Search and integrate Auth0's custom database to create a rich search experience.
You can read the complete guide and use case in [Auth0's blog](https://auth0.com/blog/azure-search-with-aspnetcore/).
It includes an ASP.NET Core Web application with a [appsettings.json](https://github.com/ealsur/auth0search/blob/master/appsettings.json) file you need to configure with your account settings:
```javascript
{
"Auth0": {
"Domain": "{YOUR_AUTH0_DOMAIN}",
"ClientId": "{YOUR_AUTH0_CLIENT_ID}",
"ClientSecret": "{YOUR_AUTH0_CLIENT_SECRET}",
"CallbackUrl": "{YOUR_CALLBACK_URL}"
},
"Search":{
"QueryKey":"{YOUR_AZURE_SEARCH_QUERY_KEY}",
"AccountName":"{YOUR_AZURE_SEARCH_ACCOUNT_NAME}"
}
}
```