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

I have a Spring Kafka application with a single consumer. The Kafka client authentication is configured using SASL/OAUTHBEARER over SSL, as shown below: authProps.put(SaslConfigs.SASL_MECHANISM,...
Nitin Bisht's user avatar
0 votes
1 answer
218 views

I've been working on setting up Azure AD B2C tenants and encountered a roadblock when trying to verify domain name availability before creating a tenant. Following a helpful response on my previous ...
Piotr Nowak's user avatar
0 votes
1 answer
196 views

I'm in the process of setting up Azure AD B2C tenants, but I keep encountering a roadblock. Whenever I try to use a specific domain name, it tells me it's "Already in use by another directory.&...
Piotr Nowak's user avatar
0 votes
1 answer
402 views

Context: I'm building a web app that intends to provide insights and analysis on user's Sharepoint and OneDrive data. Users should be able to come to my web app, connect their Sharepoint and OneDrive ...
Myles's user avatar
  • 101
1 vote
1 answer
352 views

I would like to be able to modulize my app in such a way that users do not need to grant consent for all resources during registration. Let's say I have a Calendar + Contacts management app. The ...
Eric Ruder's user avatar
1 vote
1 answer
1k views

We have an application registration on Azure AD to which users authenticate to by requesting their own access token: { "aud": "CLIENT_ID", "iss": "https://login....
Aniss Chohra's user avatar
0 votes
1 answer
6k views

Got access token using azure.identity ClientSecretCredential client credential flow but when trying to decode using the PyJwt library giving me the below error. ValueError: Could not deserialize key ...
m9m9m's user avatar
  • 1,721
0 votes
0 answers
1k views

I'm trying to get the springboot webflux oauth2 client_credentials flow work but the application is working as expected. Referring to a lot of questions and answers on stackoverflow, springboot docs I ...
Venu's user avatar
  • 1,812
0 votes
1 answer
6k views

I am running a React application. I have registered this application with Azure AD (got one client id). I am also implementing oAuth using Azure React MSAL package. I am running this application ...
OpenStack's user avatar
  • 5,726
0 votes
1 answer
2k views

I have an application in Vue.js that obtains user/bearer tokens using oidc-client that gives information about the usergroups in a particular Enterprise Application in Azure AD, the current logged in ...
user9057272's user avatar
0 votes
1 answer
2k views

I want to be able to get access tokens automatically without the need of user interaction (that is manually typing the credentials in an OAuth pop-out). I'm using grant_type: password for this; ...
Daniel Rivas's user avatar
0 votes
1 answer
74 views

I have a simple ASPNET Core Razor Pages app + ASPNET Core API: for example the API just has: builder.Services .AddAuthentication(...) .AddMicrosoftIdentityWebApi() Razor pages has: builder....
Victorio Berra's user avatar
0 votes
1 answer
2k views

We have a mail integration for MS mailboxes and we use MS Graph API for our integration. We have created an OAuth app and the right Mail scopes have been added to the app, while generating the access ...
testUser FW1's user avatar
-1 votes
1 answer
333 views

I use Azure Cost Management connector to retrieve data directly info Power Bi. There is an authentication process which based on personal account generate OAuth token (automatically). Token is valid ...
inspiredd's user avatar
  • 237
0 votes
1 answer
1k views

Somehow I managed to reduce default access token lifetime to 30 minutes. This made tokens to expire or invalid after 30 minutes. Now the problem is few users already got refresh tokens along with ...
user000682's user avatar
4 votes
2 answers
6k views

I've been trying to use the Bing Ads API, but can't even make it past the first step. I've followed these steps to the letter, but am getting stuck at the part where I need to ask for user consent. I'...
Jul's user avatar
  • 485
0 votes
0 answers
380 views

We changed our application such that it authenticates an EWS application by using OAuth. The article «Authenticate an EWS application by using OAuth» was of great help. The subsection «Configure for ...
9001_db's user avatar
  • 145
0 votes
0 answers
433 views

I havn't no issue to build an api with api-platform and generate token with LexikJwt and refresh with gedinet bundle. It's easy (thanks a lot, it's a great doc). I use Symfony 6.1 and try to integrate ...
jessie ugolin's user avatar
0 votes
1 answer
2k views

My Azure app has the scope User.Read.All approved by an admin: I request the following scopes in my oauth registration: scope: - profile - email - openid - offline_access - User.Read.All -...
Mugen's user avatar
  • 9,285
2 votes
2 answers
7k views

I have setup oauth via azure, i have received an authorization_code which i have exchanged for an access_token. I am then attempting to use that access token to get userinfo data including the email ...
Kay's user avatar
  • 19.9k
3 votes
1 answer
887 views

I'm using the auth endpoint https://login.microsoftonline.com/tenant-id/oauth2/v2.0/token programmatically (Nodejs) for getting back a token that will be used against my API. I have everything ...
Farid Hajnal's user avatar
0 votes
1 answer
868 views

I enabled oAuth in Azure API management. Then using ClientId, Client Secret, Scope, Access Token URL & Grant Type, I was able to get the access token. How can I get the refresh token from the API ?...
OpenStack's user avatar
  • 5,726
0 votes
1 answer
3k views

I followed https://www.youtube.com/watch?v=TRrBqNYtyj8 video to secure my backend API using Azure API management. After following the steps the workflow was not working and I had to add an additional ...
OpenStack's user avatar
  • 5,726
1 vote
1 answer
108 views

I have a classic ASP.Net forms based website where I have added s set of API hits based on the OAuthAuthorizationServerProvider class. It works great locally, now I trying to publish it to an Azure ...
Russ Petersen's user avatar
0 votes
2 answers
1k views

I am trying to access a service using Azure API management. I have enabled oAuth authentication on top of the service by using API's > Settings > Security and selexting oAuth 2.0. But Even after ...
OpenStack's user avatar
  • 5,726
0 votes
1 answer
130 views

I am reading an article which talks oAuth workflow. Article has a sequence diagram: I have few questions about the oAuth workflow: The first endpoint shouldn't it be called Authenticate and not ...
OpenStack's user avatar
  • 5,726
0 votes
1 answer
545 views

I want to access my Azure Data Lake Storage (Gen 2) files from gdal version 3.5 using authentication with AZURE_STORAGE_ACCESS_TOKEN as described here:https://gdal.org/user/virtual_file_systems.html#...
Manrique Vargas's user avatar
0 votes
1 answer
1k views

i'm using this URL https://login.windows.net/(the Tenant ID of the App that i made in Azure AD)/oauth2/token to create a Token for PowerBI API. my postman looks like this: but when i use this Access ...
Mostafa Bouzari's user avatar
0 votes
2 answers
2k views

I am trying to use MSAL for node.js for OAuth 2.0 authentication, and I'm getting an error when calling acquireTokenByAuthCode. Network request failed. Please check network trace to determine root ...
chrispytoes's user avatar
  • 1,937
0 votes
1 answer
1k views

In my java web application I want to get access to user's mailbox by using jakarta mail. For that purpose I followed https://learn.microsoft.com/en-us/exchange/client-developer/legacy-protocols/how-to-...
Amogh's user avatar
  • 4,563
7 votes
1 answer
2k views

I am building a system where a SPA can call an API. The SPA as well as the API are represented in Azure AD using app registrations that require users to be assigned to it. During the assignment, the ...
jokarl's user avatar
  • 2,324
3 votes
1 answer
9k views

We´re trying to get the token for Oauth using the official docs request: https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize? client_id='my client id' &scope=https%3A%2F%2Fgraph....
jsanchezs's user avatar
  • 2,078