24,704 questions
-2
votes
1
answer
75
views
How to make a free app and OAuth2 work with email providers? [closed]
I have a free Java app on GitHub that I would like to be able to send notification emails from. Am using Jakarta Mail, previously JavaMail. Have it working with GMail and an "app paaword". ...
0
votes
1
answer
42
views
When using logging into Instagram using Instagram API, redirect does not work
I am trying to authenticate Instagram with Instagram API. This is my code:
class InstagramAPI {
private accessToken: string | null = null;
private baseUrl = "https://graph.instagram.com";...
0
votes
0
answers
24
views
Google Drive API: gapi.client.drive.files.copy returns 404 for existing file (Slides template)
I'm trying to copy a Google Slides template using the Google Drive API with gapi.client.drive.files.copy, but I always get a 404 error, even though the file exists and is owned by the same account I'm ...
0
votes
1
answer
28
views
Angular Apps Using Same IdentityServer – Silent Refresh Fails When Redirecting Between Two Apps
I have two independent Angular applications (url1 and url2), both hosted on Azure Kubernetes Service (AKS) and configured to use the same IdentityServer (OIDC-based) for authentication.
Application ...
0
votes
1
answer
58
views
Can we use refresh token grant type with PKCE?
Is there any way to create public client that supports refresh token grant type? If not, how can I refresh tokens in my single page application?
I created spring boot authentication server
spring ...
0
votes
0
answers
57
views
I want to use LinkedIn API to make custom carousel and show LinkedIn posts on website [closed]
I’m working on a Laravel-based website and I want to display my company’s LinkedIn posts (from a LinkedIn Company Page) in a custom-designed carousel — something like Swiper.js or a Bootstrap carousel....
0
votes
1
answer
47
views
Misleading Graph API user_link
I have obtained advanced access to Facebook's Graph API user_link, which results in an app-scoped ID accessible only to the logged-in user.
The user_link document clearly states:
The allowed usage ...
0
votes
0
answers
36
views
Refresh token being revoked, probebly because login consent [closed]
I have the following scenario:
User logs in via google auth with basic scopes
After he logs in he can sync website's calendar with google calendar, a consent opens and asks permission for calendar ...
0
votes
0
answers
39
views
Blazor web assembly OAuth2 + PKCE flow with Google [closed]
I want to use Google authentication in my Blazor web assembly app. Unfortunately, Google does not support access token exchange for SPAs, as a client secret is required.
I tried building my ...
1
vote
1
answer
63
views
AUTH-001: client_id does not have access to the selected API product in Autodesk APS/Forge
I am developing a WordPress plugin that uses the Autodesk APS/Forge API for DWG analysis. However, I keep getting the following error when requesting an access token:
{
"developerMessage": ...
0
votes
1
answer
39
views
How to handle same email address across different OAuth providers?
I'm implementing authentication using Google and Azure, and it happens that I have a Google login with the same email as a Microsoft login, and I'm unsure what I should do about this when the user ...
1
vote
1
answer
47
views
Microsoft Entra ID CIAM – AADSTS65001: User or admin has not consented (Native Authentication)
I'm working with the new Microsoft Entra ID CIAM solution to implement native authentication in a React Native app using the Authentication API.
This is my first time using Entra ID and the new CIAM ...
1
vote
1
answer
97
views
Google OAuth2 returns an entirely different request_uri than what I submitted or configured
I have configured, clearly, my redirect_uri to be: http://127.0.0.1:8080
But when I attempt to log in, google replies with an different redirect_uri, and then returns a "redirect_uri_mismatch&...
0
votes
0
answers
36
views
Google OAuth Error 400: invalid_request when using n8n on Fly.io
I’m running n8n (workflow automation tool) on Fly.io, and it works fine.
Now I’m trying to connect Google services like Gmail or Google Sheets using OAuth2.
I created a Google Cloud OAuth 2.0 Client ...
0
votes
0
answers
66
views
Node.js Google Sheets API returns 401 'Login Required' on first call despite valid refresh token
I am building a Node.js server-side application that needs to interact with the Google Sheets API on behalf of a user using the googleapis and google-auth-library packages.
I have successfully ...