2

我正在尝试为用户订阅 youtube 频道。所以用户登录到一个 iOS 应用程序,点击订阅,我会为用户订阅一个预定义的频道。因此,我创建了一个启用了 YouTube 数据 API v3 服务的应用程序。

范围:kGTLAuthScopeYouTube

GTLServiceYouTube *service = self.youTubeService;

GTLYouTubeSubscriptionSnippet* snippet = [GTLYouTubeSubscriptionSnippet object];
snippet.channelId = @"UCGRjJrpD2bmk9Ilq6nq80qg";

GTLYouTubeSubscription* subscription = [GTLYouTubeSubscription object];
subscription.snippet = snippet;

GTLQueryYouTube *query = [GTLQueryYouTube queryForSubscriptionsInsertWithObject:subscription part:@"contentDetails,snippet"];

[service executeQuery:query
                             completionHandler:^(GTLServiceTicket *ticket,
                                                 GTLYouTubeSubscription *subscription,
                                                 NSError *error) {
                                 /* Callback */
                                 NSLog(@"subscription:%@", subscription);
                                 NSLog(@"error:%@", error);

                             }];

服务器返回:

error:Error Domain=com.google.GTLJSONRPCErrorDomain Code=-32500 "The operation couldn’t be completed. (Required)" UserInfo=0x1005d3c20 {error=Required, NSLocalizedFailureReason=(Required), GTLStructuredError=GTLErrorObject 0x10054faa0: {message:"Required" data:[1] code:-32500}}

任何想法为什么会发生这种情况?

我正在使用示例 youtube 应用程序。

https://developers.google.com/youtube/v3/docs/subscriptions/insert#examples上的示例 url 工作正常,据我所知,我在 objc 代码中做同样的事情。

发布https://www.googleapis.com/youtube/v3/subscriptions?part=contentDetails%2Csnippet&fields=snippet&key= {YOUR_API_KEY }

内容类型:application/json 授权:承载 ya29.AHES6ZQSBniofZhyVX4kfCn0-gVKKeiGayMcQHjTfWxMyffndRus7w X-JavaScript-User-Agent:Google APIs Explorer

{“片段”:{“resourceId”:{“channelId”:“UCDPM_n1atn2ijUwHd0NNRQw”}}}

200 好

  • 隐藏标题 -

Cache-Control: no-cache, no-store, max-age=0, must-revalidate Content-Encoding: gzip Content-Length: 286 Content-Type: application/json; charset=UTF-8 日期:格林威治标准时间 2013 年 6 月 14 日星期五 11:28:26 Etag:“2vd4g3cVsHAtTj​​JSdUMaBo1PBVE/Rv5ixqWURoAy7lbp6z3jpkm7IOE” 过期时间:星期五,1990 年 1 月 1 日 00:00:00 GMT 编译指示:无缓存服务器:GSE

{
 "snippet": {
  "publishedAt": "2013-06-14T11:28:26.000Z",
  "title": "ColdplayVEVO",
  "description": "",
  "resourceId": {
   "kind": "youtube#channel",
   "channelId": "UCDPM_n1atn2ijUwHd0NNRQw"
  },
  "channelId": "UCQIKfhQEozSerNr3go189mw",
  "thumbnails": {
   "default": {
    "url": "https://i1.ytimg.com/i/DPM_n1atn2ijUwHd0NNRQw/1.jpg?v=c2f0dd"
   },
   "high": {
    "url": "https://i1.ytimg.com/i/DPM_n1atn2ijUwHd0NNRQw/mq1.jpg?v=c2f0dd"
   }
  }
 }
}

更新 1 启用登录 - 请参阅 youtube.subscriptions.insert 下面的详细信息

2013-06-19 08:45:52 +0000
Request: POST https://www.googleapis.com/rpc?prettyPrint=false
Request headers:
  Accept: application/json-rpc
  Authorization: Bearer _snip_
  Cache-Control: no-cache
  Content-Type: application/json-rpc; charset=utf-8
  User-Agent: com.boxonline.tpp.bol.think/1.0 google-api-objc-client/2.0 MacOSX/10.8.3 (gzip)

Request body: (214 bytes)
{
  "jsonrpc" : "2.0",
  "method" : "youtube.subscriptions.insert",
  "id" : "gtl_1",
  "params" : {
    "fields" : "snippet",
    "part" : "contentDetails,snippet",
    "resource" : {
      "snippet" : {
        "channelId" : "UCGRjJrpD2bmk9Ilq6nq80qg"
      }
    }
  },
  "apiVersion" : "v3"
}

Response: status 200
Response headers:
  Cache-Control: no-cache, no-store, max-age=0, must-revalidate
  Content-Encoding: gzip
  Content-Length: 131
  Content-Type: application/json; charset=UTF-8
  Date: Wed, 19 Jun 2013 08:45:52 GMT
  Expires: Fri, 01 Jan 1990 00:00:00 GMT
  Pragma: no-cache
  Server: GSE
  X-Content-Type-Options: nosniff
  X-Frame-Options: SAMEORIGIN
  X-XSS-Protection: 1; mode=block

Response body: (152 bytes)
{
  "error" : {
    "message" : "Required",
    "data" : [
      {
        "reason" : "publisherRequired",
        "message" : "Required",
        "domain" : "youtube.subscription"
      }
    ],
    "code" : -32500
  },
  "id" : "gtl_1"
}

4

1 回答 1

2

解决方案是更换:

GTLYouTubeSubscriptionSnippet* snippet = [GTLYouTubeSubscriptionSnippet object];
snippet.channelId = @"UCGRjJrpD2bmk9Ilq6nq80qg";

有了这个:

GTLYouTubeSubscriptionSnippet* snippet = [GTLYouTubeSubscriptionSnippet object];
GTLYouTubeResourceId* resourceObject = [GTLYouTubeResourceId object];
resourceObject.channelId = @"UCGRjJrpD2bmk9Ilq6nq80qg";
于 2013-06-19T09:10:06.110 回答