gpt4 book ai didi

ios - 如何在 ios 中发送带有链接和图像的自定义推文?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:11:10 24 4
gpt4 key购买 nike

我知道如何使用 SLRequest 和 TWRequest 发送自定义推文,但我在发布消息和链接时没有获得链接。我只收到消息。

代码是:

  NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:@"Send to text",@"status",@"http://stackoverflow.com/",@"link", nil];
SLRequest *slRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"http://api.twitter.com/1.1/statuses/update.json"] parameters:dict];
[slRequest setAccount:account];//account is ACAcount type object

[slRequest performRequestWithHandler:^(NSData *responseData,NSHTTPURLResponse *urlResponse, NSError *error){
NSLog(@"The responseString:%@",[[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]);

}];

我认为问题在于发送链接的关键值。我在这里使用“链接”键。请帮助我。

最佳答案

更新 URL 没有链接之类的参数。您需要将您的 URl 附加到状态并为 wrap_links 参数设置 true。它将起作用

//change your dict like below
NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:[NSString stringWithFormat:@"Send to text http://stackoverflow.com/"],@"status",@"true",@"wrap_links", nil];

关于ios - 如何在 ios 中发送带有链接和图像的自定义推文?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15294223/

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