Azure AD access token from postman
Today, I have an issue getting an Azure AD access token from Postman. This is while it was working before for the same app and other apps I am working on. But none of them are working today. I was…
Today, I have an issue getting an Azure AD access token from Postman. This is while it was working before for the same app and other apps I am working on. But none of them are working today. I was…
I use the SAS key to make a GET request for the table, but I get the error "This request is not authorized to perform this operation.". What values should I fill in on the authorization tab to work this…
I am trying to clone a private Git repo hosted on Bitbucket Cloud from inside a docker image. I build the image using docker-compose (ver 3.9). I have added the public key as an Access Key in the Repo settings…
I upgraded my Yii2 application version to the latest - 2.0.46 and changed server from apache to Nginx and now I can't make API GET request from my application using query param auth Given error below <response> <name>Unauthorized</name> <message>Your request…
I want to develop an app with flutter. The app should use different pages for diffent kinds of users. There are three kinds of users: Club, Company and Fan. The problem is, that I'm not able to get to the…
I am new to Svelte, and am trying to create a login page to an API. The API takes a username and password and returns an Authorization header. I see the authorization header in the F12 developer console, and I…
I tried to configure auth sub request like this documentation Client send request with authorization header to protected resource via nginx. But when nginx send subrequest to check access, authorization header in subrequest is missed. i tried to use this…
I'm looking to create a property that will track the user's notification authorization setting for the application. (The ultimate goal here is to alert the user if they ask for a notification but have declined to receive them from the…
I am facing an common Shopify OATH authorization error, red every topic on that and still not resolved it. I have an oauth error invalid_request: The redirect_uri is not whitelisted. On my app setup page, i copied the links correctly,…
I have a role controller with Auth [Authorize(Roles = Roles.Visitor, AuthenticationSchemes = AuthorizationSchemes.Visitor)] I need to add another policy AdminPolicy to it but it should work for either of them. Is there a simple way to do that? My admin…