All Questions
Tagged with asp.net-mvc-web-api authentication
7 questions
3
votes
2
answers
4k
views
Stateful authentication in REST API using tokens
I have recently started on a project involving a REST API. The API requires authentication with requirements for administrators to be able to view logged in users and to be able to revoke specific ...
2
votes
1
answer
1k
views
Onion Architecture, Project Architecting and Authentication
I am learning ASP.NET MVC & Web API and trying to implement Onion Architecture with Repository Pattern for one of my Test projects as part of my learning.
I have developed single MVC Projects ...
1
vote
1
answer
815
views
What kind of user authentication do I need in for a restful web api
I am doing a restful web api with asp.net Web API 2
I do not want to use any form of cookies or basic authentication (send user/pass in cleartext thus SSL needed)
I do not use/need claims stuff.
I ...
1
vote
1
answer
567
views
Creating JWT token internally
I need to implement JWT tokens in my ASP.NET Core API app to handle authorization.
My question is, what is the risk of generating my own JWT token within my API app as opposed to having it handled ...
0
votes
0
answers
148
views
Authenticated ASP.NET Core MVC site consuming web API
I have an ASP.NET Core 2.2 MVC site, that uses Facebook as an identity provider. Users can click the login button, they are redirected to Facebook to enter their credentials, and are then redirected ...
0
votes
2
answers
2k
views
Integrate Web API Services with multiple authentication services
In a multi-tenant deployment of Web application, How can the Asp.Net Core Web API services be designed to work with different authorization services? The Web applications use OAuth and JWT Bearer ...
-1
votes
1
answer
1k
views
Can I call a WCF endpoint from ASP.Net Web API?
I have a web api with controller methods that use rest http(post/get calls).
Clients consume this API with normal httpclient calls and I pass an http response back.
My use case is I have a legacy ...