我们一直在通过以下方式向Google通讯录API发送axios获取请求:
www.google.com/m8/feeds/contacts/default/full
这是请求示例:
axios.get(API_ENDPOINT, {
params: {
oauth_token: access_token,
alt: 'json',
v: '3.0',
q: searchValue,
},
})
但是在最近的24小时内,我们已经通过这种方法开始出现cors错误:
Failed to load <REQUEST>: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin '<OUR_ORIGIN>' is therefore not allowed access.
有什么改变吗?还是我们的结构有问题?