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
When I run my application by putting some wrong hash. if (Platform.OS === 'ios') await initializeSslPinning({ 'aaa.bbb.com': { includeSubdomains: true, publicKeyHashes: [ 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=', 'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB=', ], } })
I can see that the calls made via axios are being pinned successfully and there is no response. But the calls made via FastImage gave back 200 StatusCode.
Is this something expected from this library because FastImage uses SDWebImage and SDWebImage is not supported by this library.
If it is supported - Is there anything wrong that I am doing in the above code? If fastImage is still not supported - Is there any plan to support this library in future?
The text was updated successfully, but these errors were encountered:
Unfortunately, react-native-fast-image fetches images via it's own implementation of network requests, separate from the React Native networking API. This means that the network requests by fast-image would not be affected by this library, per this note.
Hi @frw, does it make any difference if we use TrustKit at native side directly instead of using this lib?
Could you please help me understanding this?
In my react-native app, I want to do SSL pinning only for IOS. So, I have pinned a domain (assume aaa.bbb.com, this domain serves me the images).
I am making calls to this domain to fetch the images by two ways
When I run my application by putting some wrong hash.
if (Platform.OS === 'ios')
await initializeSslPinning({
'aaa.bbb.com': {
includeSubdomains: true,
publicKeyHashes: [
'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=',
'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB=',
],
}
})
I can see that the calls made via axios are being pinned successfully and there is no response. But the calls made via FastImage gave back 200 StatusCode.
Is this something expected from this library because FastImage uses SDWebImage and SDWebImage is not supported by this library.
If it is supported - Is there anything wrong that I am doing in the above code?
If fastImage is still not supported - Is there any plan to support this library in future?
The text was updated successfully, but these errors were encountered: