我目前正在构建使用Spotify API的Firebase Cloud函数。
现在,我知道此代码有效,因为在我根据此代码创建Express应用之前,我也曾使用过它。
但是从那时起,我似乎无法让我的云函数返回任何东西……
我真的不明白我在做什么。
const app = express();
app.use(cors({ origin: true }));
app.get("/", (req, res) => res.send("No track specified"));
app.get("/:track", (req, res) => res.send(getTrack(req.params.track)));
function getTrack(track) {
// Set up Auth options
console.log(track);
const spotify_auth_options = {
url: "https://accounts.spotify.com/api/token",
headers: {
Authorization:
"Basic " +
new Buffer(spotify_client_id + ":" + spotify_client_secret).toString(
"base64"
)
},
form: {
grant_type: "client_credentials"
},
json: true
};
request.post(spotify_auth_options, function(error, response, body) {
if (!error && response.statusCode === 200) {
console.log("No error");
// use the access token to access the Spotify Web API
var token = body.access_token;
var options = {
url: "https://api.spotify.com/v1/search?q=" + track,
headers: {
Authorization: "Bearer " + token
},
json: true
};
request.get(options, function(error, response, body) {
console.log(body.tracks);
return body.tracks;
});
}
});
}
exports.searchTrack = functions.https.onRequest(app);
答案 0 :(得分:0)
正如Doug在此问题的评论部分中提到的那样,似乎您的return语句不在适当的部分中。它嵌套在两个回调函数的内部,这些回调函数返回顶级函数的数据。如果您希望此代码能够正常工作并返回所要求的变量,请考虑将return语句移至在代码中生成最终响应的函数中。