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
Certain OpenID providers, for example Steam, will not provide any attributes, so using $this->openid->getAttributes() will return an empty array, causing the response validation to fail (missing required parameter "raw").
I suggest using $this->openid->data or $_GET for raw data instead.
This will probably mean that the responseMap will change from (for example):
'info.email' => 'contact/email'
To:
'info.email' => 'openid_ext1_value_contact_email'
etc.
The text was updated successfully, but these errors were encountered:
Certain OpenID providers, for example Steam, will not provide any attributes, so using $this->openid->getAttributes() will return an empty array, causing the response validation to fail (missing required parameter "raw").
I suggest using $this->openid->data or $_GET for raw data instead.
This will probably mean that the responseMap will change from (for example):
To:
etc.
The text was updated successfully, but these errors were encountered: