我正在尝试向oxford词典api发送请求,但我无法传递自动化标题。
这是我写的功能
function testResults (form) {
var TestVar = form.inputbox.value;
alert ("You typed: " + TestVar);
var url='https://od-api.oxforddictionaries.com:443/api/v1/';
url = url+"?word_id="+encodeURIComponent(TestVar);
word=fetch(url, {
method: 'GET',
mode: 'no-cors',
headers: new Headers({
'app_id': 'id',
'app_key': 'key'
})
})
word.then(function(response){
console.log(response)
return response.json();
}).then(function(resJson){
console.log(resJson);
})
}
我无法在正在传递的开发人员工具中看到它,我收到了403响应,