本文介绍了如何在iPhone Twitter应用程序(MGTwitterEngine)上进行RETWEET的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在iPhone Twitter应用程序(MGTwitterEngine)上进行RETWEET
How to do a RETWEET on an iPhone twitter app (MGTwitterEngine)
推荐答案
似乎此功能不受支持在mattgemmell / MGTwitterEngine中。
It seems that this function hasn't supported in mattgemmell / MGTwitterEngine yet.
在此期间,您可以通过引用MGTwitterEngine的这个变体将该函数添加到当前版本的MGTwitterEngine:
In the meantime, you can add that function to your current version of MGTwitterEngine by referencing this variant of MGTwitterEngine: freeatnet / MGTwitterEngine
- (NSString *)sendRetweet:(unsigned long)updateID
{
if (updateID == 0){
return nil;
}
NSString *path = [NSString stringWithFormat:@"statuses/retweet/%u.%@", updateID, API_FORMAT];
return [self _sendRequestWithMethod:HTTP_POST_METHOD path:path
queryParameters:nil body:nil
requestType:MGTwitterUpdateSendRequest
responseType:MGTwitterStatus];
}
这篇关于如何在iPhone Twitter应用程序(MGTwitterEngine)上进行RETWEET的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!