我向airtable表发出了 GET 请求,但使用正确的键和正确的 url,他给了我 401(未经授权)错误。
fetch("https://api.airtable.com/...")
.then(response => response.json())
.then(data => {
console.log(data)
})
.catch(error => console.error(error))