Questions tagged [openid-provider]

147 questions
2
votes
1 answer

Can't Retrieve Google User Info After Janrain's OpenID PHP Library Login

I start saying that I HATE OpenID, because it's poorly implemented/documented. I'm trying to use "openid-php-openid-2.2.2-24". Here the source code: https://github.com/openid/php-openid When I try to use the authentication example, it returns to…
D4nt3
  • 21
  • 1
  • 4
1
vote
1 answer

Getting TypeError: client_secret_basic client authentication method requires a client_secret

I am encountering an error message while working with a client authentication method. The error message I am receiving is: "TypeError: client_secret_basic client authentication method requires a client_secret." I am not sure how to resolve this…
1
vote
2 answers

Node-oidc-provider How to store clients in database

I have a problem with node-oidc-provider. I want the client list to be stored in the database, but I haven't found a solution. Please help me!!!
manhh
  • 11
  • 3
1
vote
3 answers

OpenIdConnect verify jwt from OpenId Provider

We have a web application Vuejs(front) and a api Nodejs(back). We delegate authentication to a third party OpenIdProvider. Users login in the front and get and access token. This access token contains: nbf : the time before which the JWT MUST NOT…
jeyzorus
  • 85
  • 9
1
vote
2 answers

How to integrate OpenID connect to Nest JS application

I used this documentation(https://github.com/panva/node-oidc-provider/blob/main/docs/README.md#accounts)for implementing OpenID to Nest JS. In this documentation he mentioned client_id and client secret and redirect URLS. How to get this…
1
vote
0 answers

Independence afforded by using own domain for OpenID identifier

I'm looking at OpenID in general and also thinking of using it for a web app idea I have. My question is about what can be done when an OpenID provider goes under, chooses to cancel your account, gets hacked, etc. (All theoretical to me at the…
David Oliver
  • 2,424
  • 1
  • 24
  • 37
1
vote
3 answers

Can I connect my own credentials database with Google Identity Platform to build custom Identity Provider for SSO - OpenID Connect authentication?

I have my own SQL Server database which contains usernames/passwords for authentication. I'd like to build a custom Identity Provider based on this database with an Identity Management provider so the other applications can be registered and their…
1
vote
0 answers

How to not get a new authorization code for OpenID

Probably the title is not explaining what I mean so let me try to explain with an example. User logs in to OpenId provider (example.com) with X oauth application (x.example.com). Inside of x.example.com, user wants to move y.example.com which has…
Anisa Kollenhag
  • 103
  • 1
  • 8
1
vote
2 answers

OIDC for browser-less clients

I'm working on designing an OIDC Relying Party (SP), which should work with most of the popular OIDC Providers (IDPs). I requested to allow authentication and authorization also for clients that are not web applications. Is it recommended to work…
1
vote
1 answer

How to implement openid google, yahoo and others

I am trying to implement OpenID and for that I download http://www.openidenabled.com/php-openid and from that I picked up Auth folder with changing any thing to localhost directory and created a index.php file and whose code is as below:
Vineet1982
  • 7,730
  • 4
  • 32
  • 67
1
vote
1 answer

ServiceStack Trying to create my own OpenIdOAuthProvider but VS 2017 says assembly 5.0.0.0 missing

Trying to create my own custom OpenId Auth provider, which will point to an IdentityServer service, but can't seem to find OpenIdOAuthProvider in the ServiceStack assembly. VS 2017 says Error CS0012 The type 'OAuthProvider' is defined in an…
richardb
  • 943
  • 1
  • 10
  • 27
1
vote
2 answers

Oauth2 : a Data Provider whith multiple OpenId Provider

Imagine a DataProvider secured by OAuth2. This DataProvider accepts OAuth2 tokens from multiples OpenId Provider. When a RP (Client) calls this DataProvider with an Access Token, how the DataProvider can know the DataProvider to contact to check the…
Ricou
  • 946
  • 3
  • 11
  • 22
1
vote
1 answer

Openid and types of data

I'm trying to implement an Openid server and the problem is: Exchange special data types. As i understood on openid you can only exchange ns and ax data schemas for other types of data you should implement a new schema and a new extension for the…
Winter
  • 1,896
  • 4
  • 32
  • 41
1
vote
1 answer

Creating an openid connect identity provider to secure rest APIs

I am having trouble finding an effective solution for the following requirements. a. For an ios/android user to be able to register to our app. With a custom signup process because photo ID will be required. b. If approved, sign in using the created…
Kaigo
  • 1,267
  • 2
  • 14
  • 33
1
vote
0 answers

Keycloak "there was no code" after authentication with a custom OpenID Provider

I followed a quickstart called "app-profile-jee-vanilla" to add an application to a Keycloak server. After that, I enabled log in with Google. So far, so good. Now, I wanted to add a custom OpenID provider. I developed the openid provider (still,…