1,510 questions
-4
votes
0
answers
51
views
How to can I make Bearer for Coinbase POST API? [closed]
When doing Coinbase POST API call, Bearer authorisation is used.
Example of a successful Postman API call:
let parameters = "{\n \"type\": \"send\",\n \"to\": \&...
0
votes
2
answers
69
views
Unauthorized to retrieve PowerBI embed token
I already have found other similar issues on Stack Overflow, but still have issue to retrieving the embed token in Node.js, with the message:
2025-03-07T08:31:35.098660921Z Error: Failed to get embed ...
0
votes
0
answers
44
views
JWT Token Verification Fails with 'invalid signature' in Express.js Middleware
I am working on an Express.js application where I use JWT for authentication. My authentication and verification setup works fine in Postman, but when I try to make requests from my frontend, I get ...
1
vote
1
answer
51
views
Must MS Teams workflow URL be kept secure?
I've created a Microsoft Teams workflow to post a message when webhook request is received, following this documentation.
The generated workflow URL contains a sig parameter that acts as an embedded ...
0
votes
1
answer
39
views
API token unauthorized
On line
Dim responseBody = client.DownloadString(searchUrl)
I am getting an 401 unauthorized error. I read the API @ https://api.speechanddebate.org and used the sessions function to get a token ...
0
votes
1
answer
111
views
how to generate access token in dart to send firebase push notifications? [closed]
I am working on sending push notifications from my Flutter app to Firebase Cloud Messaging (FCM) devices using Dart. To send notifications via FCM, I need to authenticate my request using a Bearer ...
0
votes
1
answer
112
views
Spring Boot with JWT : Full authentication is required to access this resource [duplicate]
I have this controller:
@GetMapping("/daily")
@PreAuthorize("hasRole('BASIC')")
public ResponseEntity<TransitsResponse> dailyT(
@RequestHeader(value = ...
0
votes
0
answers
49
views
MsalInterceptor is not setting the bearer token to the http requests made from the img, video, audio and pdf viewer control
I am developing an angular application in which I have integrated EntraID app for authentication and used the MsalInterceptor and configured the required providers as follows:
providers: [
{
...
-1
votes
1
answer
156
views
Why does my Axios API request return a 401 error while Postman works?
I’m using Axios in a Node.js application to make API requests with different authentication methods (Basic Auth, API Key, and Bearer Token). While these requests work perfectly in Postman, they return ...
0
votes
0
answers
21
views
How to do Microsoft Entra ID token validation in Spring Boot? [duplicate]
I was trying to validate the Entra ID token in a filter, and after fetching the value from JWKS URI I got the public key, but when I tried to validate it it says:
io.jsonwebtoken.security....
0
votes
1
answer
117
views
What is the problem with Postman handling Authorization bearer token as a variable?
I am performing POST to https://{{datacloud-domain}}/api/v1/ingest/sources/{{connector}}/{{table}} but I receive 401 Unauthorized
I am using correct Bearer token authorization.
Using Data Cloud token (...
0
votes
0
answers
17
views
jwtmod is not working for authentification in node
jwtmod not working to make user authenticate before consuming any API.
Here is my authenticated.js file:
import jwtmod from "jsonwebtoken";
export default async (req, res, next) => {...
0
votes
0
answers
89
views
SMTP for Office 365 with OAuth 2 by libcurl - how to get bearer token without registering application for client_id and client_secret
I've already written a couple of applications for REST calls which are authenticated by OAuth2 and therefor I had to register the application to get the client_id and client_secret in order to request ...
1
vote
0
answers
73
views
Laravel 11 Sanctum Token Expiration
I'm developing an Api with Laravel 11 using Sanctum as the authentication method. I've set the token expiration to 7 days and I'd like the client to receive a 401 response 'Token invalid or expired' ...
0
votes
1
answer
383
views
In an Azure App Service, how do I allow DefaultAzureCredential to get bearer token from App Registration (Enterprise Application)?
I have an App Registration in Entra with permissions granted to call another App Registration from same Entra. When I use client secret to get a bearer token via http for grant_type=client_credentials ...