Can I check network request message parameters in Android Profiler

Can I check the parameters of the POST request? For instance. my URL is https: // [myrestapi] .com / get_puppy_by_name.php and my parameter is "puppyname = rantanplan".

Android Studio Profiler shows me:

  • inquiry
  • method
  • status
  • Type of content
  • the size
  • URL

and an answer, including headers. A call stack is also displayed. But there are no traces of my POST parameters. It would be very convenient if it is not yet possible.

+4
source share
1 answer

This feature is available with Android Studio 3.1 Canary 5. See this announcement .

+3
source

Source: https://habr.com/ru/post/1689069/


All Articles