Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
87 views

I have a .NET 9 Blazor Maui hybrid application. In my Routes.razor i have this: <CascadingAuthenticationState> <Router AppAssembly="typeof(MainLayout).Assembly"> <...
CrazyEight's user avatar
0 votes
0 answers
87 views

I have a .NET 8 server-side Blazor app. It uses Entra ID for authentication and I've created a CustomAuthenticationStateProvider that gets roles from a database. public class ...
Rob Marsh's user avatar
  • 591
1 vote
1 answer
248 views

I am attempting to establish a Single Sign-On (SSO) with Laravel and Laravel/Passport, but I am facing a problem. The /oauth/authorize route returns JSON for an invalid client and a view (the ...
Adrian Popescu's user avatar
0 votes
0 answers
1k views

UPDATE: I definitely have some sort of deep-rooted authentication problem. This doesn't really have anything to do with the HeakthCheck.UI project I don't think. I set up a simple test controller and ...
Glen Eccles's user avatar
2 votes
0 answers
48 views

I have a case: In theta.smatyx.com: Set 1 domain-match cookie (with domain: .smatyx.com), with value of 1 short-lived jwt, signed with theta.smatyx.com). In mylong.smatyx.com: Redirect to page mylong....
Nguyen Kim Anh's user avatar
1 vote
1 answer
770 views

I'm getting the error from the title when i try to use the role attribute on the Authorized element in Blazor. It worked earlier this day. I haven't changed anything actively regarding this. This is a ...
Philipp's user avatar
  • 13
0 votes
1 answer
93 views

I have implemented a simple JWT authentication system in my code. When using the [Authorize] attribute and then analysing the user claim inside the controller code, I can see that the user has the ...
Matt B's user avatar
  • 781
0 votes
1 answer
72 views

I am using attribute [Authorize] to access endpoint. For example [Authorize(Roles = "Admin, CustomerManager, CustomerUser, ClientManager, ClientUser")] When the user's role is downgraded, ...
ilyaVlad's user avatar
0 votes
1 answer
862 views

I have 2 AAD app registrations, one for a desktop client, the other for a web API. I have configured the Authentications as per the Microsoft QuickStart to use microsoft.identity.client and microsoft....
Intensivist's user avatar
  • 1,057
0 votes
0 answers
430 views

I have created two endpoints one for login and other for logout and used JWT token to authorize the endpoint. So when I authorize the whole class using [Authorize] it authorizes both the login and ...
Avanish Srivastava's user avatar
3 votes
1 answer
986 views

I was trying to use NextAuth to add authentication to my Next app. I couldn't solve the following problem the problem I see is when I hover on authorize Type '(credentials: Record<string, string>...
abelteha's user avatar
0 votes
0 answers
426 views

I created a custom filter class which inherit ActionFilterAttribute the method looks like below public override void OnActionExecuting(HttpActionContext actionContext) { //my custom code } and my ...
Ibrahim shaikh's user avatar
0 votes
1 answer
537 views

Considering on a solution to my earlier problem (Pushed Authorization Request lifetime in OpenID Connect), I figured that PAR could only work if the authorization endpoint provided a login page and ...
Szyszka947's user avatar
  • 1,048
1 vote
0 answers
4k views

Is there support for Client Certificate Authentication in Swagger UI? If yes, could someone provide an example of enabling it in a solution using asp.net core 5 and Swashbuckle, or point me to a url ...
geetmenon's user avatar
2 votes
1 answer
433 views

I have a .NET core web API server that I am communicating with (post/get) from two applications. The first is an angular website and the second one is a WPF app. I want the angular website to get ...
Liron's user avatar
  • 31
0 votes
1 answer
285 views

I have to update a Laravel 8/9 application and I have an eli5 question about how implicitly bound middleware work. I have a logged in route to update an entity as follows: Auth::routes(['verify' => ...
Ailete619's user avatar
  • 274
0 votes
0 answers
319 views

I am trying to implement custom Authorize attribute for .net 5 SignalR component. When I use the attribute, It is being ignored and doesn't get into the custom Authorize class. [AttributeUsage(...
DRG's user avatar
  • 69
1 vote
0 answers
386 views

so my goal is to read the content of a table from a web page with the python library mechanicalsoup my problem is that I am not able to authorize my requests properly resulting in <Response [403]&...
denkverweigerung's user avatar
0 votes
1 answer
1k views

Short version: I want to apply an IAuthorizationRequirement but only for particular users. Or find a different way to solve my problem. Long version: I have an Angular SPA application that uses an ...
Brian Colavito's user avatar
0 votes
1 answer
458 views

We have an Identity Server 4 to authorize users and custom authorization in API project. I want to set both of these authorizations together, but first check Identity Server 4 and then my custom ...
Ali.Ahmadi's user avatar
1 vote
1 answer
1k views

How can I create a feature in Express JS where users can authorize their Google account with our app. So, we can fetch the google sheet from their accounts and show it in my express app, and if users ...
NOOBIEBOY97's user avatar
0 votes
1 answer
159 views

I was implementing the Podio server-side flow authentication. I used the following url format: https://podio.com/oauth/authorize?response_type=code&client_id=MY-ID&redirect_uri=http://182.35....
Alex's user avatar
  • 1,260
-2 votes
1 answer
819 views

really need some help to understand what I'm doing wrong with my reauthorization policy. My policy looks like this: var policy = Policy .HandleResult<HttpResponseMessage>(message =&...
Scott's user avatar
  • 19
0 votes
0 answers
84 views

I am new to Blazor and i need to help. I'm trying to explain what the problem is. MainLayout.razor @inherits LayoutComponentBase @attribute [Authorize] <AuthorizeView> <Authorized> ...
Bzred's user avatar
  • 1
3 votes
2 answers
4k views

I have a test web site which uses the aspnetCore [AuthorizeAttribute] at the entire controller level to ensure only Authenticated Users can hit this site. While we debug and test new features, we ...
FoxDeploy's user avatar
  • 13.8k

1
2 3 4 5 6