Peter Lightbody
Peter Lightbody
Below is what I am currently using for FasAPI/Vue/KeyCloak. Firstly, I've got an auth file which contains the logic: ```python # ./auth.py from fastapi.security import OAuth2AuthorizationCodeBearer from keycloak import KeycloakOpenID...
The `OAuth2AuthorizationCodeBearer` doesn't require a client secret. In my example above, I provide one only to the `KeycloakOpenID` (which is also optional, and in your case would be left blank)....
You can't use your FastAPI (your bearer only client ID) on the `/docs` page. The client ID on `/docs` page should be a `public` client ID. You should think of...
@aguilarpablo, I think this might be an issue with your keycloak client setup. When you view the client in the keycloak admin, check what value you have for "Valid Redirect...
+1 I am also experiencing this issue
@bluefirex can this be merged?
I have yet to find a way of doing this. I have instead wrapped it in my own custom component, which has an open method that takes an object as...
I'm having this issue as well. I've read the referenced issue, checked the version: | package | version | -------------|------------- | aacotroneo/laravel-saml2 | 0.8.1 | | onelogin/php-saml | 2.11.0 |...
> what laravel version are you using? @matijakovacevic, sorry, I didn't see your message, at the time, I was using version 6.2
I had this same issue, I solved it by setting the `retrieveParametersFromServer` to `true` in the `config/saml2_settings.php` file and also storing the `sessionIndex` and `nameId` values from the login event,...