All Projects → ealsur → auth0documentdb

ealsur / auth0documentdb

Licence: other
Sample repository for Auth0 & Azure DocumentDB integration

Programming Languages

C#
18002 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to auth0documentdb

Demo.AspNetCore.ServerSentEvents
Demo project for demonstrating functionality of Lib.AspNetCore.ServerSentEvents
Stars: ✭ 52 (+271.43%)
Mutual labels:  asp-net-core
Sitko.Core
Sitko.Core is a set of libraries to help build .NET Core applications fast
Stars: ✭ 46 (+228.57%)
Mutual labels:  asp-net-core
ForEvolve.AspNetCore.Localization
Easy Asp.Net Core MVC validation data attributes localization.
Stars: ✭ 17 (+21.43%)
Mutual labels:  asp-net-core
CleanArchitectureDemo
This is a demo project built on .NET Core 3.1 Clean Architecture. Please refer the articles mentioned in the readme to learn more.
Stars: ✭ 33 (+135.71%)
Mutual labels:  asp-net-core
eixample
Multi-Tenant .NET 6 Architecture (Angular, Vue, React)
Stars: ✭ 61 (+335.71%)
Mutual labels:  asp-net-core
JWT-user-auth-API-bolilerplate
Boilerplate for backend API user authentication with JWT
Stars: ✭ 13 (-7.14%)
Mutual labels:  auth0
ertis-auth
Generic token generator and validator service like auth
Stars: ✭ 28 (+100%)
Mutual labels:  auth0
nativescript-auth0
Nativescript Auth0 https://auth0.com/ social authentication plugin
Stars: ✭ 57 (+307.14%)
Mutual labels:  auth0
smartadmin.core.urf
Domain Driven Design (DDD) lightweight development architecture(support .net 5.0)
Stars: ✭ 100 (+614.29%)
Mutual labels:  asp-net-core
LearningPoint
A repository for learning different technologies, frameworks, features......
Stars: ✭ 66 (+371.43%)
Mutual labels:  asp-net-core
RDO.Net
Relational Data Objects for .Net
Stars: ✭ 23 (+64.29%)
Mutual labels:  asp-net-core
contoso-university
Contoso University demo using asp net core and related technologies
Stars: ✭ 42 (+200%)
Mutual labels:  asp-net-core
fastapi-auth0
FastAPI authentication and authorization using auth0.com
Stars: ✭ 104 (+642.86%)
Mutual labels:  auth0
Voyager
Alternative routing system for aspnet api applications.
Stars: ✭ 44 (+214.29%)
Mutual labels:  asp-net-core
CleanArchitecture-Template
This is a solution template for Clean Architecture and CQRS implementation with ASP.NET Core.
Stars: ✭ 60 (+328.57%)
Mutual labels:  asp-net-core
IdentityServer4.PhoneNumberAuth
Sample passwordless phone number authentication using OAuth in ASP.NET Core 2.2
Stars: ✭ 83 (+492.86%)
Mutual labels:  asp-net-core
SQLiteEncryptionUsingEFCore
SQLite Encryption using Entity Framework Core (EFCore)
Stars: ✭ 42 (+200%)
Mutual labels:  asp-net-core
StormReport
🌀 Library - Create your reports using only annotations
Stars: ✭ 17 (+21.43%)
Mutual labels:  asp-net-core
JwtAuthDemo
ASP.NET Core + Angular JWT auth demo; integration tests; login, logout, refresh token, impersonation, authentication, authorization; run on Docker Compose.
Stars: ✭ 278 (+1885.71%)
Mutual labels:  asp-net-core
CVPZ
No description or website provided.
Stars: ✭ 16 (+14.29%)
Mutual labels:  asp-net-core

Using Azure DocumentDB with Auth0

This repository acts as sample in a scenario where you want to use Azure DocumentDB as your database and integrate Auth0's authentication service by a custom database scenario.

You can read the complete guide and use case in Auth0's blog.

It includes an ASP.NET Core Web application with a appsettings.json file you need to configure with your account settings:

    {
     "Auth0": {
        "Domain": "{YOUR_AUTH0_DOMAIN}",
        "ClientId": "{YOUR_AUTH0_CLIENT_ID}",
        "ClientSecret": "{YOUR_AUTH0_CLIENT_SECRET}",
        "CallbackUrl": "{YOUR_CALLBACK_URL}"
      },
      "DocumentDb":{
        "EndpointUri":"{YOUR_DOCUMENTDB_ENDPOINT_URL}",
        "Key":"{YOUR_DOCUMENTDB_PASSWORD}",
        "DatabaseName":"{YOUR_EXISTENT_DOCUMENTDB_DATABASE_NAME}",
        "CollectionName":"{YOUR_EXISTENT_DOCUMENTDB_COLLECTION_NAME}"
      }
    }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].