Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to inspect post parameters of network request in Android Profiler

Tags:

android

Is it possible to inspect POST parameters of a request? E.g. my URL is https://[myrestapi].com/get_puppy_by_name.php and my parameter is "puppyname=rantanplan".

Android Studio Profiler shows me:

  • the request
  • the method
  • the status
  • the content type
  • the size
  • the URL

and the Response including headers. Also the Call Stack is shown. But there is no trace of my POST parameters. This would be a really convenient feature, if it is not possible yet.

like image 246
rumpel Avatar asked Nov 10 '17 13:11

rumpel


1 Answers

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

like image 112
Arcao Avatar answered Sep 28 '22 15:09

Arcao