我正在查看reddit api,并按照指南获取access_token
-see here。
我的代码如下:
componentDidMount() {
const code = '12345';
let headers = new Headers();
headers.set('Authorization', 'Basic ' + (CLIENT_ID + ":" + CLIENT_SECRET));
fetch('https://www.reddit.com/api/v1/access_token', {
method: 'post',
headers,
body: JSON.stringify({
grant_type: 'authorization_code',
code,
redirect_uri: 'http://localhost:3000'
})
});
}
}
这将返回401
错误,如果我删除标头,它将卡在200 OPTIONS
上。
有人能看到我在做什么吗?