将 HTTP Basic-Auth 与 Google App Engine URLFetch 服务配合使用
2022-09-01 15:18:44
如何指定用户名和密码,以便使用 App Engine 的 URLFetch 服务(Java)发出 Basic-Auth 请求?
看来我可以设置HTTP标头:
URL url = new URL("http://www.example.com/comment");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestProperty("X-MyApp-Version", "2.7.3");
基本身份验证的适当标头是什么?