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]);
}];
問題は、リンクを送信するためのKeyValueにあると思います。ここでは「リンク」キーを使用しています。私を助けてください。