bearer-token Questions
9
Solved
I am confused about how to create a good header for a simple Get request in Angular 5.
This is what I need to do in Angular:
This is what I have so far:
getUserList(): Observable<UserLis...
Shizue asked 12/4, 2018 at 16:55
4
Here I need to pass Authorization Bearer to get response from server in case of uploading file to server I am using retrofit.
I tried in two ways
1)
This is how I initialized in retrofit interf...
Fulfil asked 23/2, 2018 at 13:2
3
I am trying to access an API using an oauth2 authorization token in Java
Here is the client code
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPost post = new HttpPost("http://r...
Naissant asked 28/6, 2016 at 20:44
6
Solved
When I signed up for the Twitter API for research , they gave me 3 keys: API Key, API Secret Key, and Bearer Token. However the Hello Tweepy example, 4 keys are used: consumer_key, consumer_secret,...
Connoisseur asked 11/2, 2021 at 14:45
1
Solved
I am implementing jwt with Spring Boot. We have created a structure in which a user who has logged in once has the issued token value and sends the token value when logging in again. The expiration...
Electromotor asked 22/11, 2021 at 3:52
3
Solved
I have created a WebApi and a Cordova application.
I am using HTTP requests to communicate between the Cordova application and the WebAPI.
In the WebAPI, I've implemented OAuth Bearer Token Generat...
Nikolai asked 14/10, 2014 at 9:21
2
Solved
Implemented the JWT Bearer Token validation in .Net Core WEB API as mentioned below:
services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
.AddJwtBearer(opt =>
{
opt.Audience = ...
Burthen asked 31/3, 2021 at 15:57
4
Solved
I am new to ASP.NET core itself. However, I am creating WebAPIs in ASP.NET Core 2.0. I have configured JWT Bearer Token based authentication. Below is my Controller which return token.
[AllowAnon...
Almetaalmighty asked 18/10, 2017 at 23:33
6
Solved
According to RFC6750-The OAuth 2.0 Authorization Framework: Bearer Token Usage, the bearer token is:
A security token with the property that any party in possession of the token (a "bearer&qu...
Siva asked 14/9, 2014 at 21:27
1
Solved
My WebAPI application gets a token from a service on start-up. This token is then to be used in a shared HTTP Client to prevent port exhaustion.
When this token is about to expire, I want to get a ...
Tamikatamiko asked 20/7, 2021 at 16:24
3
Solved
I'm trying to get JWT bearer authentication in an ASP.Net API gateway using Ocelot to work with multiple authorities/issuers. One issuer is Auth0 and the other is an in-house authentication server ...
Orling asked 23/10, 2018 at 15:20
4
Solved
I have attempted to search for a solution to this problem, but have not found the right search text.
My question is, how can I configure my IdentityServer so that it will also accept/authorize Api...
Integer asked 11/10, 2018 at 17:10
2
we have a webserver (nginx) https://www.website.com which is protected by a basic authentication. The API https://www.website.com/api does not have a basic authentication!
The problem now is, sinc...
Divorcement asked 22/9, 2018 at 11:58
1
Solved
My Xamarin project runs a simple token identification check on launch, which is where I believe it is being held up. The odd part is that it only crashes after not being opened for an extended peri...
Tattan asked 18/11, 2020 at 4:4
11
Solved
I'm using ASP.NET Core 2.0 application (Web API) as a JWT issuer to generate a token consumable by a mobile app. Unfortunately, this token couldn't be validated by one controller while can be valid...
Stephen asked 22/8, 2017 at 1:56
1
Solved
Im currently working with Quarkus and Swagger-UI as delivered by quarkus-smallrye-openapi.
We have OIDC from Azure AD as security, which is currently not supported by Swagger-UI (see Swagger-Docs),...
Kentish asked 1/10, 2020 at 11:37
2
Situation:
I have a Web API 2 project which acts as an Authorization server (/token endpoint) and a resource server. I am using the template that comes out of box with ASP.Net Web API minus any MVC...
Placard asked 8/1, 2016 at 10:26
3
Solved
I am new to Angular and inherit an old version so bear with me.
My Angular 1.5.7 application needs to get files from my API server that is protected by Bearer Token Authentication https://somedoma...
Shalna asked 17/7, 2018 at 10:41
1
I am developing an ASP.NET Core Web API application. I am using Swagger and have applied JWT Bearer token authentication, but when I try to pass the Bearer token from Swagger UI, I am getting a 401...
Vitia asked 1/6, 2020 at 3:55
2
Solved
I have a ASP.Net WebApi with token based authentication and I want to use swagger to create documentation for this RestApi.
The Api has for now only 2 methods, one for requesting a token i.e. http...
Anthologize asked 30/6, 2018 at 18:49
1
Solved
I'm trying to deploy on production (AWS Elasticbeanstalk server) a simple asp net core project that use IdentityServer; my test project is basically the React.js template of Visual Studio 2019 with...
Casemate asked 16/3, 2020 at 21:30
2
I have a project in MVC using .NET Framework v4.7 with some WebApi on it. What I need to know is how to use a middleware between then to authorize a JWT for HTTP requests and MVC Action requests.
...
Ecumenicism asked 21/9, 2018 at 19:8
3
In a Spring Boot project we enabled Spring Security and applied Keycloak authentication with bearer token like described in the following articles:
https://www.keycloak.org/docs/3.2/securing_apps/...
Rhotacism asked 6/8, 2018 at 15:41
2
Solved
When I am using the command kubectl with the --token flag and specify a token, it still uses the administrator credentials from the kubeconfig file.
This is what I did:
NAMESPACE="default"...
Choriocarcinoma asked 5/2, 2020 at 20:47
2
Solved
If I have a method that sends some data to an endpoint, I understand I should use a bearer token to authenticate this call, sent in the header of the request.
Say my method that sends/receives dat...
Nunhood asked 13/2, 2017 at 13:16
© 2022 - 2024 — McMap. All rights reserved.