Skip to content

Commit

Permalink
Fix docs broken link. (#45)
Browse files Browse the repository at this point in the history
* Fix broken docs link.
  • Loading branch information
laura-rodriguez authored Sep 17, 2018
1 parent 9fcac4a commit 83649a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Check out the following resources:
* [Quickstart ASP.NET Core](https://developer.okta.com/quickstart/#/okta-sign-in-page/dotnet/aspnetcore)
* [ASP.NET 4.x samples](https://github.com/okta/samples-aspnet)
* [ASP.NET Core samples](https://github.com/okta/samples-aspnetcore)
* [Project documentation](https://github.com/okta/okta-aspnet/docs/)
* [Project documentation](https://github.com/okta/okta-aspnet/tree/master/docs)


## Contributing
Expand All @@ -29,4 +29,4 @@ Issues and Pull Requests are welcome! To build the project, clone and build it w

## Getting help

If you get stuck or need help, head over to our [Dev Forum](https://devforum.okta.com) or email [email protected].
If you get stuck or need help, head over to our [Dev Forum](https://devforum.okta.com) or email [email protected].
4 changes: 2 additions & 2 deletions docs/aspnetcore-webapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public void ConfigureServices(IServiceCollection services)
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = OktaDefaults.ApiAuthenticationScheme;
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultSignInScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = OktaDefaults.ApiAuthenticationScheme;
options.DefaultSignInScheme = OktaDefaults.ApiAuthenticationScheme;
})
.AddOktaWebApi(new OktaWebApiOptions()
{
Expand Down

0 comments on commit 83649a8

Please sign in to comment.