-
Updated
Apr 29, 2020
identity
Here are 757 public repositories matching this topic...
-
Updated
Jul 17, 2020 - Go
-
Updated
Jul 15, 2020 - Ruby
-
Updated
Jul 17, 2020 - Rust
Describe the feature
Ideally the documentation should mention all the datastore models required by the OpenID Connect flows. The current documentation has this section for OAuth2.0 (https://oauthlib.readthedocs.io/en/latest/oauth2/server.html#create-your-datastore-models) but it is missing for OIDC.
-
Updated
Jul 17, 2020 - Go
-
Updated
Jul 14, 2020 - JavaScript
-
Updated
Jul 17, 2020 - Go
I wrote the server part
io.on('connection', socketioJwt.authorize({ secret: jwtsecret, timeout: 15000 })).on('authenticated', function (socket) { console.log('Connected: ' + socket.decoded_token.id + ' ' + socket.decoded_token.displayName); });
But I can not connect with android
Can you please tell me how to do this, can have a sample code?
-
Updated
Jul 17, 2020 - Java
Which Version of MSAL are you using ?
4.10
Platform
all
Repro
AcquireTokenInteractive with scope "User.Read" or with no scopes
AcquireTokenSilent with the same scopeExpected behavior
AcquireTokenSilent should hit the cache
Actual behavior
refresh_token flow is used to get a new AT every time
Additional context/ Logs / Screenshots
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Jul 14, 2020 - C#
-
Updated
Jul 16, 2020 - HTML
-
Updated
Nov 15, 2019 - Shell
-
Updated
Jul 16, 2020 - TypeScript
-
Updated
Feb 15, 2020 - Java
-
Updated
Jul 16, 2020 - Python
-
Updated
Apr 30, 2020
-
Updated
Jul 11, 2020 - Dart
-
Updated
Jul 16, 2020 - JavaScript
-
Updated
Jul 14, 2020 - C#
-
Updated
Apr 22, 2020 - Python
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Jul 14, 2020 - Jupyter Notebook
-
Updated
Nov 3, 2018 - C#
Improve this page
Add a description, image, and links to the identity topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the identity topic, visit your repo's landing page and select "manage topics."
I use IdentityServer (v2.5.3) and recently went from code-defined clients to appSettings-defined (see http://docs.identityserver.io/en/3.1.0/topics/clients.html)
In the process I made the mistake of translating
AllowedGrantTypes = GrantTypes.ClientCredentialsinto"AllowedGrantTypes": [ "ClientCredentials" ]when the correct value is"client_credentials".I noticed that: