4,202 questions
0
votes
0
answers
11
views
How to request additional LinkedIn API permissions for r_organization_social and w_organization_social scopes?
I'm developing an application that integrates with LinkedIn and needs to manage and publish content on behalf of users to their LinkedIn Pages. For this, I require the r_organization_social and ...
0
votes
0
answers
17
views
Keycloak Token generation from RealmResourceProvider
Im trying to generate a token in the keycloak spi with realmResourceProvider.Any ideas on how to do it? Simply,how to generate a token in the spi.
JsonWebToken token = new JsonWebToken(); // ...
0
votes
0
answers
33
views
Call MS Fabric REST API from Synapse notebook
I am trying to call MS Fabric Semantic model refresh API from Synapse notebook.
https://learn.microsoft.com/en-us/rest/api/power-bi/datasets/refresh-dataset-in-group#example-of-refreshing-a-dataset
...
0
votes
0
answers
24
views
How to manage access and refresh tokens with session wrapper without conflicts during OAuth authentication?
I'm using the access and refresh token flow for authentication in my app. The refresh token is stored in an HTTP-only cookie, while the access token is stored in memory (using Redux Toolkit) on the ...
0
votes
0
answers
50
views
How to properly generate access-token and then exchange it in Spring Security 6.4?
I have written java application on Spring Boot (ver. 3.4.3). I need to make a call to 3rd-party service via HTTP API exposed through RestClient. The RestClient must be authenticated – meaning that ...
0
votes
1
answer
46
views
WSO2 IS 7.1.0 GA: How to Get Token for Sub-Organization User Using Password Grant
I have configured wso2 identity server 7.1.0 GA as below:
create organization (orgA - 23d6071e-e64e-4992-b4fa-607b955af4a6)
inside suborganization i created user: orgA-user
Is is possible to get ...
0
votes
0
answers
46
views
User access_tokens are failing validation
I'm encountering an issue with validating a perfectly valid access_token issued by Azure Entra ID. Despite using the correct RSA public key that was used to sign the token, the signature validation is ...
0
votes
0
answers
42
views
Meta Graph API: How to get a Permanent Access Token for Internal Daemon App?
I'm developing a Python daemon application intended to run continuously in the background and interact programmatically with an internal Facebook page using the Meta Graph API. I've been struggling to ...
0
votes
0
answers
121
views
request using CI_JOB_TOKEN fails after upgrade from gitlab 17.8.4 to 17.9.1
I have a problem after an update to gitlab 17.9.1 (latest) from 17.8.4. Everything seems to be working fine except the ability to get some files from the repository without cloning it, because it is ...
0
votes
0
answers
24
views
need to cache an access token from oauth url.How do I pass the cached access token to the next invoke policy
I need to cache an access token from oauth endpoint and use the access token to make a call to a backend endpoint. How do I pass the cached access token to the next invoke policy? I am using IBM API ...
1
vote
1
answer
52
views
Google Matrix API not authorized on this project with Token access key
I'm trying to use the Google Matrix Api on a web project using a token to authenticate.
The testing is done in console to minimize potential errors like bellow :
curl "https://maps.googleapis.com/...
0
votes
1
answer
123
views
Meta WhatsApp API: Where to approve permanent token generation request?
I'm trying to generate a permanent access token for my WhatsApp API app on Meta Developers. I followed these steps:
Created a System User under my Business Manager.
Assigned the app as an asset to ...
0
votes
0
answers
71
views
Understanding Keycloak's default client scope "web-origins"
By default, keycloak clients get assigned among other client scopes also scope "web-origins". Apparently, this takes value of "Web Origins" setting from respective client "...
2
votes
1
answer
72
views
Storing Google Drive API Access Token in Redis Causes 401 UNAUTHENTICATED Error
I’ve built a web application that uses the Google Drive API across multiple pages. On each page, I need to make authenticated API calls to Google Drive. When I log in on a page, I obtain an access ...
1
vote
0
answers
122
views
How to Implement Guest Login with Keycloak While Handling High Concurrency?
I'm trying to implement a guest login feature using Keycloak in my API. Here's what I'm attempting:
Created a guest user with a guest role that has minimal permissions.
When a user chooses guest ...