带有 Twitter OAUTH 的 503 HTTP 响应代码

503 HTTP response code with Twitter OAUTH

我尝试从 Twitter(仅限应用程序)获取授权令牌,代码几乎完全遵循官方指南,但得到 503 服务不可用代码。

        @Override
    protected Boolean doInBackground(Void... params) {
        String cred_enc = tw_cons_key + ":" + tw_priv_cons_key;
        cred_enc = Base64.encodeToString(cred_enc.getBytes(), Base64.NO_WRAP);

        Request request = new Request.Builder().url("https://api.twitter.com/oauth2/token")
                .header("Authorization:", "Basic " + cred_enc)
                .header("Content-Type:", "application/x-www-form-urlencoded;charset=UTF-8")
                .post(RequestBody.create(MEDIA_TYPE_MARKDOWN, postBody))
                .build();
        client.newCall(request).enqueue(new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {
                e.printStackTrace();
            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                ResponseBody body = response.body();
                if (response.isSuccessful()) {
                    Headers headers = response.headers();

                    //response check
                    for (int i = 0; i < headers.size(); i++) {
                        System.out.println("Headers: " + i + " " + headers.name(i) + " : " + headers.value(i));
                    }
                    System.out.println(body.string());

                    try {
                        JSONObject jsonObject = new JSONObject(body.string());
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                } else {
                    throw new IOException("Unexpected code" + response);
                }
                body.close();
            }
        });
        return true;
    } 

可能的原因是什么?

它要求我在本地主机上编写一个简单的服务器来找出实际生成的 HTTP 请求。

问题出在冒号上:.header("Authorization:"导致网络请求中Authorization::

在我从 header 键值中删除冒号后,HttpUrlConnection 和 OkHttp 代码变体都可以无缝运行。