我正在使用改造来提出一些网络请求,但不确定要使用哪个@annotation,我设法使用PostMan实用程序成功请求但无法在Android应用程序上正确使用它。因此,我想从网络检查员调试。
如何使用我的Android app / emulator生成类似下面的日志/报告?
POST /path/to/api/ HTTP/1.1
Content-Length: [length]
Content-Type: multipart/form-data; boundary=iSBcxYW-SeE_dubqNJw3p6PP59WbDOAj
--iSBcxYW-SeE_dubqNJw3p6PP59WbDOAj
Content-Disposition: form-data; name="file"
test
--iSBcxYW-SeE_dubqNJw3p6PP59WbDOAj--
答案 0 :(得分:3)
您可以设置loglevel以查看restadapter中的日志以进行改造: -
RestAdapter restAdapter = new RestAdapter.Builder().setEndpoint(your_url_endpoint)
.setRequestInterceptor(requestInterceptor)
.setLogLevel(RestAdapter.LogLevel.FULL)
.setLog(new AndroidLog("your log tag"))
.build();