0
        HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create("https://www.googleapis.com/youtube/analytics/v1/reports?ids=channel%3D%3D{channelid}&start-date=2012-01-01&end-date=2012-02-01&metrics=views");
        service.Authenticator.ApplyAuthenticationToRequest(myHttpWebRequest);
        HttpWebResponse response = myHttpWebRequest.GetResponse() as HttpWebResponse;

我收到 403 禁止错误。错误发生在 GetResponse() 行上。范围已设置为“ https://www.googleapis.com/auth/yt-analytics.readonly ”。标头包含访问令牌承载。

编辑:我正在使用服务帐户,这可能是个问题吗?

4

0 回答 0