gpt4 book ai didi

带有 SLRequest 的 iOS 转发返回错误的 URL 错误

转载 作者:行者123 更新时间:2023-11-29 03:35:41 24 4
gpt4 key购买 nike

我正在实现转发功能,但在发布后我不断收到错误的 URL 错误。这是我的代码:

SLRequest *twitterRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"https://api.twitter.com/1.1/statuses/retweet/%@.json"] parameters:[NSDictionary dictionaryWithObject:tweetId forKey:@"id"]];

[twitterRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
dispatch_async(dispatch_get_main_queue(), ^{

if ([urlResponse statusCode] == 429) {
NSLog(@"Rate limit reached");
return;
}

if (error) {
NSLog(@"Error: %@", error.localizedDescription);
return;
}

});
}];

有什么想法吗?我错过了什么吗?谢谢!

最佳答案

我的错。我在创建请求“...%@.json”时忘记传递字符串。

SLRequest *twitterRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:[NSString stringWithFormat:@"https://api.twitter.com/1.1/statuses/retweet/%@.json",@"490794578250059776"]] parameters:nil];

关于带有 SLRequest 的 iOS 转发返回错误的 URL 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19219260/

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