Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.6k views
in Technique[技术] by (71.8m points)

xcode - How to do a RETWEET on an iPhone twitter app (MGTwitterEngine)

How to do a RETWEET on an iPhone twitter app (MGTwitterEngine)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It seems that this function hasn't supported in mattgemmell / MGTwitterEngine yet.

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];
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...