gpt4 book ai didi

ios - 我可以通过 NSURLResponse 获取 URL 吗?

转载 作者:行者123 更新时间:2023-11-28 17:59:41 25 4
gpt4 key购买 nike

我有一个 url 并使用 viglink api 创建了另一个,现在使用 viglink api 我想获取 URL,如果我收到响应的话。

  NSString *vigLinkApiKey = @"somekey";
NSString *url = self.textfieldProductURL.stringValue;
NSString *affiliatedUrl = [NSString stringWithFormat:@"http://api.viglink.com/api/click?key=%@&out=%@&loc=http://amazon.com[&cuid=%@][&reaf=0][&ref=http://amazon.com]", vigLinkApiKey, url, [PFUser currentUser].username];

NSLog(@"Product URL: %@", url);

NSURLRequest *urlRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:affiliatedUrl] cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:30];

NSData *urlData;
NSURLResponse *response;
NSError *error;

// Make synchronous request
urlData = [NSURLConnection sendSynchronousRequest:urlRequest
returningResponse:&response
error:&error];
NSString *str = [[NSString alloc] initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"str:%@",str);

现在,我终于想在收到响应时获取 URL。是否可以。如何获取 URL?

请发送答案。

谢谢。

最佳答案

关于ios - 我可以通过 NSURLResponse 获取 URL 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22197773/

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