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
Enabling SSL pinning does not fail when certificates in wrong format (e.g. PEM encoded one) are used on iOS. But later on the app crashes when you try to send a request.
The text was updated successfully, but these errors were encountered:
We're experiencing the same issue. The app throws an "uncaught exception": *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
Then you know your .cer file is not encoded with DER. To transform the PEM encoded file to DER, use: openssl x509 -in <input.cer> -outform der -out <output.cer>
Enabling SSL pinning does not fail when certificates in wrong format (e.g. PEM encoded one) are used on iOS. But later on the app crashes when you try to send a request.
The text was updated successfully, but these errors were encountered: