Youtube Data API和Google Cloud Endpoints

时间:2015-10-21 10:57:56

标签: javascript python google-cloud-endpoints google-cloud-platform youtube-data-api

我在使用javascript客户端中的Google数据API v3与Google云端点协同工作时遇到了问题。我认为我的问题围绕gapi.client.setApiKey()方法设置了我的端点API和YouTube API的关键。当我设置密钥YouTube时,但我的端点没有,我使用我的端点API看到以下错误:

{
    "domain": "usageLimits",
    "reason": "accessNotConfigured",
    "message": "Access Not Configured. The API () is not enabled for your project. Please use the Google
 Developers Console to update your configuration.",
    "extendedHelp": "https://console.developers.google.com"
}

如果没有密钥,我的端点可以正常工作,但youtube搜索没有,我使用搜索功能收到此消息:

{
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
    "extendedHelp": "https://code.google.com/apis/console"
}

加载API的代码总结如下,但基本上我已经遵循端点python / javascript教程和youtube数据API教程!

init = function(apiRoot) {
  var apisToLoad;

  var callback = function(){
    if(--apisToLoad == 0){
      enableButtons();
    }
  }

  apisToLoad = 2; // must match number of calls to gapi.client.load()
  gapi.client.load('myAPIName', 'v1', callback, apiRoot);
  gapi.client.load('youtube', 'v3', onYouTubeApiLoad); 
};

// Called automatically when YouTube API interface is loaded (see line 9).
function onYouTubeApiLoad() {
    //sets the api key
    gapi.client.setApiKey('APIKeyForYouTubeFromDevConsole');
}

2 个答案:

答案 0 :(得分:2)

要仅使用API​​密钥验证youtube API请求,请删除api.client.setApiKey方法调用。

在调用YouTube数据API时,为API请求添加关键参数:

var request = gapi.client.youtube.search.list({
    part: 'snippet',
    type: 'video',
    maxResults: 12,
    q: searchValue,
    key: 'YourAPIKeyGoesHere'
});

这意味着只有这些API调用才被授权,而不是端点调用。

答案 1 :(得分:1)

我对Youtube Data API并不是非常熟悉。但我将您用于端点的代码识别为我们提供的代码。您绝对可以将此代码用于Endpoints API。对于Youtube数据,我建议looking here

看起来你需要的代码是这样的:

import com.google.api.client.auth.oauth2.Credential;
import com.google.api.services.youtube.YouTube;

public class myClass {

    /**    
     * Define a global instance of a Youtube object, which will be used
     * to make YouTube Data API requests.
     */
    private static YouTube youtube;

    public static void main(String[] args) {

        List<String> scopes = Lists.newArrayList("https://www.googleapis.com/auth/youtube");

        try {
            // Authorize the request.
            Credential credential = Auth.authorize(scopes, "invideoprogramming");

            // This object is used to make YouTube Data API requests.
            youtube = new YouTube.Builder(Auth.HTTP_TRANSPORT, Auth.JSON_FACTORY, credential)
                .setApplicationName([YOUR APP])
                .build();
        }

从那里你应该可以使用youtube对象进行调用,并使用gapi将内容发送到你的终端。