Hello
I have an iOS 9+ app that has recently started failing authentication at AWS. I am trying to determine whether the failure is due to my Auth0 configuration.
I install Auth0 components using CocoaPods. Currently I have
pod 'Lock', '~> 1.28'
pod 'Lock/Safari'
in my pod file. The message I am receiving from AWS is
Error Domain=com.amazonaws.AWSCognitoIdentityErrorDomain Code=8 “(null)” UserInfo={__type=NotAuthorizedException, message=Invalid login token. OpenIDConnect provider’s HTTPS certificate doesn’t match configured thumbprint}
During login I call Lock’s
authenticateWithConnectionName(...)
passing in
"facebook", "google-oauth2" or "Username-Password-Authentication"
as the connection name. All 3 connection types are failing with the same error.
This login sequence worked well until recently. Have I missed an update that could be causing this problem?
Thanks