gpt4 book ai didi

iphone - iOS asihttp nslog请求

转载 作者:行者123 更新时间:2023-12-01 17:45:10 25 4
gpt4 key购买 nike

我需要记录ASIHTTP中使用的请求

   NSURL *url = [NSURL URLWithString:@"https:// tor.or rd.net.au/OnlineService.svc/JSON/G "];

ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];

[request setDelegate:self];

[request setPostValue:@"b07db55065b922fdae9" forKey:@"token"];
[request setPostValue:@"2312" forKey:@"points"];

[request startSynchronous];
//hasta aqui!
NSString *response = [request responseString];

NSLog(@"the request ::%@", request );

NSLog(@"respond ::%@", response);

但是我在nslog中得到了这个
     the request ::<ASIFormDataRequest: 0x7b62a00>

我想查看网址和正文(字典)

所以我该如何格式化要记录的响应,
谢谢!

最佳答案

我几天前也有同样的问题。想通了,这是解决方案:

转到ASIHTTPRequestConfig.h文件并查找第20行。

 // When set to 1, ASIFormDataRequests will print information about the request body to the console 
#ifndef DEBUG_FORM_DATA_REQUEST
#define DEBUG_FORM_DATA_REQUEST 0
#endif

因此,要记录请求正文,只需将0更改为1。因此将是这样的:
 // When set to 1, ASIFormDataRequests will print information about the request body to the console 
#ifndef DEBUG_FORM_DATA_REQUEST
#define DEBUG_FORM_DATA_REQUEST 1
#endif

请享用。希望能帮助到你 :)

关于iphone - iOS asihttp nslog请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8426470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com