Home > Net >  How to capture requests (in the form of curl) made from an app?
How to capture requests (in the form of curl) made from an app?

Time:01-06

I have apps on Android and iOS and would like to capture requests made from those apps for load testing the API endpoint.

How can I achieve that?

I know there is Flipper but it seems like I need to setup the development environment. And there is man-in-the-middle-proxy but I can't copy curl from there.

CodePudding user response:

Flipper allows you to get cURL by right clicking on the API request made.

cURL in Flipper

  • Related