https://docs.microsoft.com/en-us/aspnet/web-api/overview/security/individual-accounts-in-web-api
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/social/
https://github.com/IdentityModel/IdentityModel.OidcClient.Samples
https://github.com/IdentityServer/IdentityServer4
Build API return auto properties
- /api/tracks/1?props=bytes,milliseconds,name
- /api/albums/22?props=artistname,title,track(trackid;bytes;name)
- /api/albums/3?props=artistname,title,track
- /api/tracks?props=trackid,name,unitprice
- /api/artists/6?props=album(title)
- /api/artists/6?props=album(title;track(trackid;unitprice))
Facebook, ASP.NET Core Web API, Token based authentication
Sample project demonstrating jwt-based authentication with an Angular (v5.2.1) frontend and ASP.NET Core 2 Web Api. Includes both local user registration with .NET Core Identity membership and facebook login scenarios.