Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey
Filter by
Sorted by
Tagged with
1 vote
1 answer
144 views

I'm running an instance of Apache Superset, a Python Flask app that uses Flask-AppBuilder's security module. I'm using an Azure SSO config similar to that from the docs: { "name":...
Sam Firke's user avatar
  • 23.4k
0 votes
1 answer
188 views

Without azurite I saw that I can obtain a bearer token by preforming a restapi call with this as the guide https://learn.microsoft.com/en-us/entra/identity-platform/v2-oauth2-implicit-grant-flow and ...
entropy283's user avatar
1 vote
1 answer
701 views

I am launching azurite from the command line as outlined in the docs and that is working fine. https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azurite?tabs=visual-studio%2Cblob-...
entropy283's user avatar
0 votes
1 answer
310 views

I am maintaining a headless (runs as a background service) application that reads emails automatically (it does not send, just parses, handles, and deletes). This had been working for years prior to ...
Joseph Buys's user avatar
1 vote
1 answer
3k views

I have tested the following login flow (pseudo-code) with Azure AD / Oauth2 / Graph. It works perfectly: Redirect in browser to MS365 for token: https://login.microsoftonline.com/$tenantid/oauth2/v2....
mangrove's user avatar
1 vote
1 answer
469 views

When Microsoft revoked the Basic Authentication for IMAP protocol (past year), I implemented a way to get the token to use in the connection. I'm using Aspose.Email and I followed that article: https:/...
Marc's user avatar
  • 1,505
1 vote
1 answer
229 views

I have a Flask (2.2.3) app with Flask-RESTX (1.1.0) used as an API (without frontend). I'm using flask-azure-oauth library to authenticate users using Azure AD. The setup is: from flask import Flask, ...
Kombajn zbożowy's user avatar
0 votes
1 answer
93 views

According docs, if I need include external idp token in a response, I need this code: <ClaimsProvider> <DisplayName>Facebook</DisplayName> <TechnicalProfiles> <...
Anton Putau's user avatar
1 vote
1 answer
918 views

I am able to get access token using custom scope user_impersonation. https://{tenant}.b2clogin.com/xxx.onmicrosoft.com/oauth2/v2.0/authorize? p=B2C_1A_SIGNUP_SIGNIN& client_id=...
baton's user avatar
  • 33
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
0 answers
88 views

Given roles hierarchy defined in security.yml which is used to grant access in our application: role_hierarchy: ROLE_COMMERCIAL: [ ROLE_USER ] ROLE_MANAGER: [ ROLE_USER ] ROLE_COMMERCIAL_ADMIN: [...
Medinho's user avatar
  • 221
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
5 votes
3 answers
2k views

I've previously been using the validate-jwt policy successfully in a lot of projects. I would like to try out the new validate-azure-ad-token policy instead. I changed one of my policies from: <...
jokarl's user avatar
  • 2,324