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 order to debug some issues I'm having I would like to see the network request (url, headers, cookies, request, response, etc). In my case, I particularly want to verify that the session and rememberme cookies are being sent.
These days react-native-debugger supports this option for regular fetch requests, but I don't see the RNFetchBlob request show up in the network tab.
Is there a way I can enable this?
The text was updated successfully, but these errors were encountered:
No you can't. The library is using native requests, not using the fetch offered by react-native. Therefore react-native-debugger can't intercept and inspect these.
You would need to use some network monitoring tool or put prints in the native code.
But in general, if a normal fetch has your cookies, this library should use them too
In order to debug some issues I'm having I would like to see the network request (url, headers, cookies, request, response, etc). In my case, I particularly want to verify that the session and rememberme cookies are being sent.
These days react-native-debugger supports this option for regular fetch requests, but I don't see the RNFetchBlob request show up in the network tab.
Is there a way I can enable this?
The text was updated successfully, but these errors were encountered: