POST /api/createUser?someParamName=value HTTP/1.1 Host: localhost Connection: close Content-Type: application/json
{ "name": "name", "age": 1 }
Obfuscated code
If you are analyzing an application that uses a supported library, but its code is obfuscated, you can create a mapping file to replace the class names.
To do this, you can manually use the “Rename” function in the decompiled code in the jadx-gui, and then save the generated mapping file (File > Save mappings). Or use an example mapping file for Retrofit and modify it according to your application.
Example of analyzing an application with renaming classes using a mapping file.