在前端发出以下提取请求时,我得到了所需的type
和id
值。
export const getUserProfile = () => {
return (
fetch(
"https://api.spotify.com/v1/me", {
headers: {"Authorization": "Bearer " + user_id}
})
.then(response => {
return response.json()
})
.then(data => {
console.log(data.type)
console.log(data.id)
})
)
}
知道无法在Node中使用提取API,我使用npm install request
包在节点服务器上获取数据。
request.post(authOptions, function(error, response, body) {
var access_token = body.access_token
let postInfo = {
url: 'https://api.spotify.com/v1/me',
headers: {
"Authoriztion": "Bearer " + access_token
},
json: true
}
request.post(postInfo, function(error, response, body) {
const route = body.type
const current_user_id = body.id
console.log(body)
let uri = process.env.FRONTEND_URI || `http://localhost:3000/${route}/${current_user_id}`
res.redirect(uri + '?access_token=' + access_token)
})
})
这样做的目的是在调用res.redirect
时将客户端发送到用户的主页。但是,当客户端被重定向时,URL为http://localhost:3000/undefined/undefined?accesss_token={some token}
当查看为什么值未定义时,我console.log(body)
并得到
{
error: {
status: 401,
message: 'No token provided'
}
}
但是我可以在记录响应时看到包含令牌的信息
_header: 'POST /v1/me HTTP/1.1\r\nAuthoriztion: Bearer {some token}=\r\nhost: api.spotify.com\r\naccept: application/json\r\ncontent-length: 0\r\nConnection: close\r\n\r\n'
我可以看到为什么我的值未定义,但是为什么我在节点上却获得了未经授权的状态,而不是在客户端上使用访存API?我还注意到URL access_token
与服务器记录的令牌不匹配。
这是我正在使用的文档:
https://www.npmjs.com/package/request
Github文件:https://github.com/ryansaam/litphum-server/blob/master/server.js
答案 0 :(得分:0)
如果在服务器代码中使用node-fetch
,则具有与fetch
类似的API。