我正在尝试使用我的个人令牌访问Figma API,但是一旦我发出请求,它就会发送带有 403 状态(禁止)的响应,有人可以帮助我吗?
我生成了一个令牌:我的令牌
我向以下网址发出请求:'https://api.figma.com/v1/files/${mytoken}';
状态码如下:403
我的代码有什么问题?网址有错吗
fetch('https://api.figma.com/v1/mytoken').then((response) => {
console.log(response)
})
状态代码:403 禁止
根据 figma 身份验证文档,您应该将令牌添加到请求的标头中。
X-Figma-Token: *YOUR TOKEN*
fetch('https://api.figma.com/v1/files/...', {
method: 'GET',
headers: {
'X-Figma-Token': 'your-figma-token',
},
})
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));