0

このスレッドに投稿されたコード スニペットを使用して、 gdata-objectivec-clientライブラリを使用して YouTube 動画にコメントを実装しようとしています。コピーは次のとおりです。

- (void)addCommentTitle:(NSString *)commentTitle
            text:(NSString *)commentContent
            toVideo:(GDataEntryYouTubeVideo *)entry {
    GDataComment *commentObj = [entry comment];
    GDataFeedLink *feedLink = [commentObj feedLink];
    NSURL *feedURL = [feedLink URL];
    if (feedURL) {
        // fetch the comment feed for the video
        GDataServiceGoogleYouTube *service = [self youTubeService];
        [service fetchFeedWithURL:feedURL
                completionHandler:^(GDataServiceTicket *ticket, GDataFeedBase *commentFeed, NSError *error) {
                    // callback
                    //
                    // insert a new comment into the comment feed
                    if (error == nil) {
                        GDataEntryYouTubeComment *newCommentEntry = [GDataEntryYouTubeComment commentEntry];
                        [newCommentEntry setTitleWithString:commentTitle];
                        [newCommentEntry setContentWithString:commentContent];

                        NSURL *postURL = [[commentFeed postLink] URL];
                        [service fetchEntryByInsertingEntry:newCommentEntry
                                                 forFeedURL:postURL
                                          completionHandler:^(GDataServiceTicket *ticket, GDataEntryBase *entry, NSError *error) {
                                              // callback
                                              if (error == nil) {
                                                  // succeeded
                                              }
                                          }];
                    }
                }];
        }
    }

しかし、私は常に次の例外を受け取ります:

*** Assertion failure in -[GDataObject setContentStringValue:](), XXXXXXXX/GData/BaseClasses/GDataObject.m:2353
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'GDataEntryYouTubeComment setting undeclared content value'

幸いなことに、コメントの内容が設定される前に新しい呼び出しを追加することで、これを解消することができました。

GDataEntryYouTubeComment* newCommentEntry = [GDataEntryYouTubeComment commentEntry];
[newCommentEntry addContentValueDeclaration];    // <--- this method does the trick
[newCommentEntry setTitleWithString:commentTitle];
[newCommentEntry setContentStringValue:commentContent];

ただし、リクエストがサーバーから次のエラーで跳ね返されるため、まだ問題ありません。

serviceBase:<GDataServiceGoogleYouTube: 0x7a73eb0>
objectFetcher:GTMHTTPFetcher 0x7c75b20 (https://gdata.youtube.com/feeds/api/videos/XXXXXXXXXX/comments)
failedWithStatus:400
data:<errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>ParseException</code><internalReason>[Line 2, Column 514, element entry] No converter for type class java.lang.Void</internalReason></error><error><domain>GData</domain><code>missingConverter</code><internalReason>No converter for type class java.lang.Void</internalReason></error></errors>

他の誰かがこの問題に遭遇しましたか? これは私の側のエラーですか、それとも Google 側のエラーですか?

4

1 に答える 1

0

上記のコードは正しいことがわかりました。私のコードではスペルを間違えました

[newCommentEntry setContentWithString:commentContent];

と使用

[newCommentEntry setContentStringValue:commentContent];

代わりは。今では正常に動作します。

于 2012-07-13T14:08:02.997 に答える