1

我试图从 Twitter 上发帖,但它没有发布评论。它显示错误 204,在 facebook 中成功发布了相同的数据,但在 twitter 中我得到了一个错误,任何人都可以知道如何解决它

在此处输入图像描述

-(void)postDataOnTwitterMethod{

    if ([[FHSTwitterEngine sharedEngine]isAuthorized]) {
        NSData *dataFromPath = UIImageJPEGRepresentation(cameraImage,1.0);

        number = (arc4random()%10000)+1; //Generates Number from 1 to 10000.
        RndNo = [NSString stringWithFormat:@"%i", number];
        NSLog(@" ITEM %@",RndNo);

        NSString *avalabelDate = [NSString stringWithFormat:@"%@_%@",[CommonMethods getCurrentDateAndTime],self.AvailableTillTextField.text];

        NSString *theWholeString = [NSString stringWithFormat:@"Item No: %@\nItemName: %@\nItemCost: %@\nAvailableTill: %@\nCategory: %@\nDescription: %@",RndNo,self.NameTextField.text,self.PriceTextField.text,avalabelDate,self.ListTypeTextField.text,self.DecTextView.text];

        dispatch_async(GCDBackgroundThread, ^{
            @autoreleasepool {

                [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
                NSError *returnCode = [[FHSTwitterEngine sharedEngine]postTweet:theWholeString withImageData:dataFromPath];
                [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

                NSString *title = nil;
                NSString *message = nil;

                if (returnCode) {
                    title = [NSString stringWithFormat:@"Error %d",returnCode.code];
                    message = returnCode.localizedDescription;
                } else {
                    title = @"Tweet Posted";
                }
                dispatch_sync(GCDMainThread, ^{
                    @autoreleasepool {
                        UIAlertView *av = [[UIAlertView alloc]initWithTitle:title message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
                        [av show];
                    }
                });
            }
        });
    }
    else{
        [[FHSTwitterEngine sharedEngine]showOAuthLoginControllerFromViewController:self withCompletion:^(BOOL success) {
            NSLog(success?@"L0L success":@"O noes!!! Loggen faylur!!!");
        }];
    }

}
4

4 回答 4

0

你的评论让我笑了。

我相信这是一个 HTML 错误。这意味着数据已收到并被理解,但您不应该期望得到回报。换句话说,它是无效的。至少这是我通过快速浏览您的代码和我对 Twitter API 的最小理解所看到的。

于 2013-09-26T10:39:04.653 回答
0

现在我可以发送字符串但无法使用此方法发送图像

 NSError *returnCode = [[FHSTwitterEngine sharedEngine]postTweet:theWholeString withImageData:imageData];
于 2013-09-29T12:29:17.393 回答
0

FHSTwitterEngine有一些已知的错误,现在问题已得到修复,见下文:
使用 FHSTwitterEngine 发布图像时出现错误

于 2013-11-20T10:39:36.610 回答
0

使用此代码压缩现有图像,您将获得发布的图像。

NSData *data = UIImageJPEGRepresentation(imageView.image, 0.6);
于 2015-05-22T05:58:51.103 回答