bearer-token Questions

2

Solved

I am trying to get C++ code that uses the curl.h library to make curl requests that require the setting of the Authorization: Bearer header. I am using Linux Mint 18 (Ubuntu). I have made this cur...
Mandle asked 26/7, 2018 at 14:2

2

Solved

I have created JWT based Authentication in my Web API application. I am not able to figure out the difference between Basic Token Bearer Token Can someone please help me?
Stripy asked 1/12, 2015 at 5:33

3

Solved

I have an GraphQL API written with Spring Boot. I wanted to connect it with Azure Active Directory but getting that error when I sent a request filled with Authentication bearer header. com.nimb...
Artificer asked 16/10, 2019 at 6:13

1

I am using Identity server 4 in my Asp.net core API Application , i am getting successful token on local server https://localhost:[port]/connect/token and it gives access token and when i use the...

1

Solved

I'm using the following code to issue my JWEs: var signCreds = new SigningCredentials(new SymmetricSecurityKey(Encoding.ASCII.GetBytes(Configuration["Jwt:SigningKey"])), SecurityAlgorithms.HmacSha...
Dancer asked 16/11, 2019 at 11:15

3

Solved

I am currently trying to learn how to build a secure api using bearer token, I keep getting this error (InvalidOperationException: The AuthorizationPolicy named: 'Bearer' was not found.) and I am n...
Jealousy asked 8/4, 2018 at 11:15

1

To sent and receive authorization bearer I did read this Correct way to set Bearer token with cURL and this How to properly use Bearer tokens? and here is my code: $url = "http://www.example.c...
Overvalue asked 27/10, 2019 at 17:6

2

Solved

Situation: I have a WPF application that have to call an http-trigger function which is secured via Azure Active Directory. While trying to retrieve a bearer token for further calls I get followin...
Danley asked 23/10, 2019 at 12:41

1

My understanding (which may be incorrect) of Keycloak is that once an User has logged in and is authenticated, the access-token/JWT is then stored as a cookie in the browser (under the default name...
Ceasar asked 4/10, 2019 at 5:26

1

Solved

I've been struggling to get multiple authentication schemes working correctly in Asp.net core 2.1. I am using Identity Server with an implicit flow and OpenIdConnect as the protocol. When author...

3

Solved

In my rails application I'm able to get the Token Authorization: Token token='aUthEnTicAtIonTokeN' passed in header of request with authenticate_with_http_token do |token, options| @auth_token = ...
Scheller asked 2/6, 2017 at 7:48

1

So, I was having trouble with Bearer authentication while setting up IdentityServer4. Basically, I wasn't able to call my API resource and was getting a 401 error. When I added the Authorization he...

1

Solved

I am currently trying to convert a VueJS page to NuxtJS with VueJS. Unfortunately I have some problems with authenticating the user and I can't find a solution in Google. I only use Nuxt for the cl...
Blesbok asked 4/5, 2019 at 19:35

3

Solved

Twitter's API requires sending an Authorization header that is a base64 encoding of an API key concatenated with an API secret key. In Node, I use: var base64 = new Buffer(apiKey + ':' + apiSecret...
Deficient asked 28/10, 2015 at 7:44

3

Solved

I use the following middleware to refresh my token when it expires : import {AsyncStorage} from 'react-native'; import moment from 'moment'; import fetch from "../components/Fetch"; import jwt_dec...
Dessau asked 19/2, 2019 at 15:51

2

My SPA uses React as front end and laravel API as backend. When the user logs in (via axios and api), the api returns an access (Bearer token) as response. I use the react-cookie framework to sto...

1

How can you configure Bearer Token Authorization/Authentication in Hangfire? I have a custom authentication filter that read the Authentication Token on the initial request but all other requests ...
Lynnelynnea asked 6/9, 2016 at 14:1

1

Solved

Is this an acceptable implementation of a custom bearer token authorization mechanism? Authorization Attribute public class AuthorizeAttribute : TypeFilterAttribute { public AuthorizeAttribute(...
Scots asked 29/3, 2018 at 8:11

1

I want to authenticate a User in my Java REST endpoint using Keycloak and a Bearer token. The workflow I want to achieve is the following: The client logs to Keycloak with Username and Password...
Tasman asked 23/4, 2018 at 10:37

4

My task is to make async image requests with auth headers. I have image paths like this: <img src="{{file.src}}"/> And I need to Add Bearer Token to header for such requests. Page contains...
Lamson asked 4/10, 2017 at 11:24

2

Solved

Is it possible define that ASP.NET Web API 2 bearer token that never expires? Any clue?
Kobe asked 10/3, 2014 at 19:27

1

Solved

Currently utilizing a JWT authentication schema where the tokens have "Bearer: in the schema. Is it possible to remove the "Bearer" prefix so I wouldn't need to add it on the client side just to pa...
Contrabandist asked 31/5, 2018 at 14:24

1

Solved

I tried doing the following: request({ url: 'https://vdms-dev.clientsolve.com/evoDMDev/api_event.php', headers: { 'Authorization': 'Bearer 71D50F9987529' } }, function(err, res) { console.log...
Kenner asked 18/5, 2018 at 3:10

1

Solved

I am adding JWT Auth for a completely new frontend to a legacy Rails backend. Upon HTTP request, it seems most sources suggest I send the token back to the server via Bearer Header. Why? What is ...

1

Solved

I have an MVC client of .Net core which uses identityserver 4. Methods which returns view is protected by authorize attribute. But how to call web API (which is separate project running on differ...

© 2022 - 2024 — McMap. All rights reserved.