mirror of
https://github.com/plankanban/planka.git
synced 2026-02-25 11:21:03 +03:00
login with OAuth2 #403
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @CvH on GitHub (Jan 31, 2024).
Is it possible to login if just oauth2 is available?
We are bound to use https://github.com/thephpleague/oauth2-server and it is just offers Oauth2 and no OIDC.
The client used by planka panva/node-openid-client can deal with it, likewise its not implemented in planka yet.
According to
4db8f3e23eit sounds like it could work but sadly lacks the details.It sounds like it could work if I create a stub
.well-known/openid-configurationfile with some content ?@meltyshev commented on GitHub (Jan 31, 2024):
Hi! We haven't tested this possibility and it's hard to say what exactly is required, but probably with
.well-known/openid-configurationit should work.@CvH commented on GitHub (Feb 1, 2024):
I created a fake file at the webserver and planka starts at least and seems to try to login.
I needed to create a valid response file otherwise planka would crash.
added this to my nginx config
The resonse from the webserver if I try to login is
Checked ids etc and it should work. At both ends no errors received so likewise it tries something that is not working. Just to clarify I have no real idea about OIDC so maybe I made some basic mistake at the json above already.
@woprandi commented on GitHub (Feb 8, 2024):
You will need at least the userinfo & logout endpoint.
@meltyshev commented on GitHub (Aug 9, 2025):
This issue may have been resolved by https://github.com/plankanban/planka/pull/1290. Please feel free to reopen if it's still not fixed or if anyone else encounters it.