6

我正在尝试在 Android 上使用新的 Youtube Data API 从给定 ID 中检索视频标题,

https://www.googleapis.com/youtube/v3/videos?id=6DbS1VB8HGo&part=player&key=XXX

但是,我不断收到回复说需要登录和错误代码 401。

我猜测它与授权令牌有关,但我不明白为什么我需要这个,因为我没有执行任何帐户特定的操作,例如从播放列表中更新或删除。我想要的只是标题,也许还有观看次数。

应感谢任何帮助,以下是我正在使用的代码:

public class NetTask extends AsyncTask<String, Void, String>{
    @Override
    protected String doInBackground(String... params) {
        HttpClient httpClient = new DefaultHttpClient();
        //param[0]= "https://www.googleapis.com/youtube/v3/videos?id=6DbS1VB8HGo&part=player&key=xxyy"
        HttpPost httpPost = new HttpPost(params[0]);
        HttpResponse response;

        try {
            response = httpClient.execute(httpPost);
            String responseString = EntityUtils.toString(response.getEntity());
            JSONObject responseJSON = new JSONObject(responseString);
            responseJSON.toString();

        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return null;
    }
}
4

1 回答 1

0

API 文档说:

先决条件

  1. 向 Google 注册您的应用程序,以便它可以提交 API 请求。
于 2013-03-31T16:27:28.860 回答