授权标题不包含在标题中

时间:2018-05-05 10:47:45

标签: javascript ecmascript-6

我正在尝试向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响应,

1 个答案:

答案 0 :(得分:2)

我猜你必须在URL参数(查询参数)中发送它们,而不是标题

<强>更新 我用Postman app试了一下。标题为我工作

enter image description here