如何在httpRequest中设置标头身份验证?
我试过这个,但它没有奏效。
connection.setRequestMethod("GET");
connection.setRequestProperty ("Authorization", accesToken);
connection.setRequestProperty("Accept", "application/json");
答案 0 :(得分:1)
以下是我对基本身份验证的HTTP请求所做的事情:
function DocumentTypeController() {
var vm = this;
vm.test = test;
vm.groupId = null;
function test(dropdown) {
alert('text is:' + dropdown.item.text());
}
}