close
Skip to main content

New answers tagged

Score of -1

How can I support Google Sign-In for arbitrary websites in an iOS WKWebView-based browser?

For an iOS WKWebView browser, Google Sign-In can be tricky because Google may block authentication flows inside embedded webviews. A better approach is to open the Google login flow using ...
Score of -2

How can I use Microsoft Entra on a GitHub Page for an Azure Function?

Your Issuer URL is pinned to 9188040d-6c67-4c5b-b112-36a304b66dad, which is the personal Microsoft account tenant, while the app registration is set to "Any Microsoft Entra directory & ...
Score of -3

How can I use Microsoft Entra on a GitHub Page for an Azure Function?

The root cause of the problem is due to the authentication token not being sent to the Azure function. Here is the recommended solution: Step 1: UI authenticates to MS Entra and fetches the ...
Score of -1

How to extend FastAPI's OAuth2PasswordBearer logout feature?

OAuth2PasswordBearer does not provide a logout_url because logout/revocation is not part of the OAuth2 bearer-token authentication scheme itself. OAuth2PasswordBearer is mainly used by FastAPI to ...
Score of 0

The application requesting authentication tokens is either disabled or incorrectly configured

I know it is a little bit late, but for me worked switching from Debug to Release mode.
Score of 1
Accepted

Best practices for identifying clients in an API

Since many people have been asking what I mean by "client" The third update makes the intended mechanism much clearer: How I would tackle these problems is by returning a "key", ...
Score of 0

Using openID framework for authentication method in Openfire

There is now XEP-0493 (OAuth Client Login) based on OAuth 2.0 and SASL/OAuth standard (RFC 7628) that may be used for OpenID Connect login to an XMPP server. There is both an (non-official) Openfire ...
Score of 1

Cannot clone git from Azure DevOps using PAT

You can set your GCM authentication to use oauth. GCM uses PAT by default. PAT is now being deprecated. Also there is an ongoing effort to remove SSH enabled AuthN. Use oauth for your Azure DevOps, ...
Score of 10
Accepted

How to make an HTTP POST request with an AUTH parameter in VBA?

The Python code is using the HTTP BASIC authentication scheme (see requests doc). In the VBA code, the MSXML2.XMLHTTP60 object is supposed to have built-in support for BASIC authentication. Simply ...
Score of 0

AWS Cognito - How to force select account when signing in with Google

This still happen to me recently, turn out the prompt parameter is not really the reason. What I did to "fix" it is to enable Managed login. Yes even when you think you don't need it. Under '...
Score of 3

How can a single-page web app let whitelisted IPs bypass OIDC login?

One approach is to avoid having the SPA decide based on the client's IP. Instead, let the backend determine whether authentication is required. The SPA can first make a lightweight request (e.g., /me ...
Score of 1

How to migrate EWS authentication to MS Graph authentication in VB.NET

Your using the client credentials flow so the first thing you would need to do is in the Application Registration you using eg associated the AzureAppId Add the Microsoft Graph Application permissions ...

Top 50 recent answers are included