You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered quite a few problems with the plugin's operation. Particularly at the provider configuration level. I go through google as idp. Once the user enters their credentials, they are identified but are not connected.
Instead of entering this:
providers:
saml_provider:
# Basic provider instantiates a user with default roles
saml:
user_class: 'AppBundle\Entity\User'
default_roles: ['ROLE_USER']
I had to put instead:
providers:
saml_provider:
entity:
class: App\Entity\User
property: email
So I was able to be authenticated and connected to my application (ip)
The text was updated successfully, but these errors were encountered:
Good morning,
I encountered quite a few problems with the plugin's operation. Particularly at the provider configuration level. I go through google as idp. Once the user enters their credentials, they are identified but are not connected.
Instead of entering this:
providers:
saml_provider:
# Basic provider instantiates a user with default roles
saml:
user_class: 'AppBundle\Entity\User'
default_roles: ['ROLE_USER']
I had to put instead:
providers:
saml_provider:
entity:
class: App\Entity\User
property: email
So I was able to be authenticated and connected to my application (ip)
The text was updated successfully, but these errors were encountered: