Code Monkey home page Code Monkey logo

aspnetcore.noninteractiveoidchandlers's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

aspnetcore.noninteractiveoidchandlers's Issues

Multiple Typed HttpClients sharing the same token

Hi,

Is there a way to share tokens between multiple Typed HttpClients that use the same authentication configuration?

Here's an example of my code:

void ConfigureClientCredentialsTokenHandlerOptions(ClientCredentialsTokenHandlerOptions options)
{
	options.Authority = Configuration.Auth0.Authority;
	options.ClientId = Configuration.Auth0.ClientId;
	options.ClientSecret = Configuration.Auth0.ClientSecret;
	options.Scope = "customers suppliers";
	options.GrantType = Configuration.Auth0.GrantType;
	options.EnableCaching = true;
}

services.AddHttpClient<ICustomerClient, CustomerClient>(
	client => client.BaseAddress = new Uri(Configuration.BaseUri)
).AddOidcClientCredentials(ConfigureClientCredentialsTokenHandlerOptions);

services.AddHttpClient<ISupplierClient, SupplierClient>(
	client => client.BaseAddress = new Uri(Configuration.BaseUri)
).AddOidcClientCredentials(ConfigureClientCredentialsTokenHandlerOptions);

In this case a token is fetched and cached per HttpClient. But I'm looking for a solution where the token is only fetched once.

Regards,

Jochen

An item with the same key has already been added. Key: scope

When caching is not enabled, the following error occurs: An item with the same key has already been added. Key: scope

The cause is the following line:

Parameters = _options.ExtraTokenParameters ?? new Dictionary<string, string>(),

My configuration uses:

options.ExtraTokenParameters = new Dictionary<string, string> {{"audience", Configuration.Audience}};

The issue is that the Dictionary is reused and thus the second time, keys that already part of the dictionary are added again.

The solution is to create a new dictionary based on the dictionary in the options.

Parameters = _options.ExtraTokenParameters ? new Dictionary<string, string>(_options.ExtraTokenParameters) :  new Dictionary<string, string>(),

Incompatible with IdentityModel 6.0.0

Hi,

AspNetCore.NonInteractiveOidcHandlers does not work when installing the latest version of IdentityModel.

The following error occurs when trying to use the GetToken method on the ClientCredentialsTokenHandler.

image

Kind regard,
Jorsi

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.