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
In webauthn.php, there's following code: $publickey->rpid = str_replace('https://', '', $this->appid);
This rpid key is directly used for the challenge in the authentication request. However, at least a few browsers treat the json key case-sensitively and the authenticator will not be able to find any of the IDs that were provided. This should fix the issue: $publickey->rpId = str_replace('https://', '', $this->appid);
The text was updated successfully, but these errors were encountered:
In webauthn.php, there's following code:
$publickey->rpid = str_replace('https://', '', $this->appid);
This rpid key is directly used for the challenge in the authentication request. However, at least a few browsers treat the json key case-sensitively and the authenticator will not be able to find any of the IDs that were provided. This should fix the issue:
$publickey->rpId = str_replace('https://', '', $this->appid);
The text was updated successfully, but these errors were encountered: