Youtube Data API PlaylistItems:列表调用适用于iOS但不适用于Android

时间:2016-05-27 17:15:00

标签: android youtube-data-api

我正在尝试使用YouTube Data API PlaylistItems:列表调用,将公共播放列表中的YouTube视频简单表添加到我现有的Android应用中。

我已经成功地让它在我的应用程序的iOS版本上工作,但它不适用于我的应用程序的Android版本。我不想(也不应该)使用OAuth,但只需要使用我生成的API密钥。我尝试过使用Android API密钥和浏览器API密钥,但它们都不起作用。

我不断收到此错误消息:

"error": {  
    "errors": [   {    
        "domain": "global",    
        "reason": "required",    
        "message": "Login Required",    
        "locationType": "header",    
        "location": "Authorization"   }  ],  
    "code": 401,  
    "message": "Login Required" }}

这是我的网址:https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId=MY_PLAYLIST_ID&key=MY_API_KEY此网址适用于iOS版本,当我在浏览器中输入时,此处也是:https://developers.google.com/youtube/v3/docs/playlistItems/list#examples,所有这些网址都没有使用任何类型的身份验证。我已经尝试更新我的API密钥,但这也没有用。这是我的代码,以防它有用:

@Override
        protected String doInBackground(Void... params) {
            try {
                URL urlConnection = new URL(url_from_above);
                HttpURLConnection connection = (HttpURLConnection) urlConnection
                        .openConnection();
                connection.setReadTimeout(15000);
                connection.setConnectTimeout(15000);
                connection.setDoInput(true);
                connection.setDoOutput(true);
                connection.setRequestMethod("GET");

                int responseCode = connection.getResponseCode();

                if (responseCode == HttpsURLConnection.HTTP_OK) {
                    String line;
                    String jsonString = "";
                    BufferedReader br=new BufferedReader(new InputStreamReader(connection.getInputStream()));
                    while ((line=br.readLine()) != null) {
                        jsonString+=line;
                    }
                    result = jsonString;
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
            return result;
        }

1 个答案:

答案 0 :(得分:0)

经过一段时间的长时间试验和错误后,我发现问题出在connection.setDoOutput(true);经过一些简短的研究,为什么会破坏它,我发现了这一点:What exactly does URLConnection.setDoOutput() affect?