Comment faire un retweet sur une application twitter iPhone (MGTwitterEngine)Comment faire un retweet sur une application twitter iPhone (MGTwitterEngine)
1
A
Répondre
5
Il semble que cette fonction n'a pas pris en charge dans mattgemmell/MGTwitterEngine encore.
En attendant, vous pouvez ajouter cette fonction à votre version actuelle de MGTwitterEngine en faisant référence à cette variante de 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];
}
1
- (NSString *)sendRetweet:(unsigned long)updateID
{
if (updateID == 0){
return nil;
}
NSString *path = [NSString stringWithFormat:@"statuses/retweet/%u.%@", updateID, API_FORMAT];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithCapacity:0];
[params setObject:[NSString stringWithFormat:@"%@", updateID] forKey:@"id"];
NSString *body = [self _queryStringWithBase:nil parameters:params prefixed:NO];
return [self _sendRequestWithMethod:HTTP_POST_METHOD path:path
queryParameters:params body:body
requestType:MGTwitterUpdateSendRequest
responseType:MGTwitterStatus];
}