gpt4 book ai didi

javascript - 带有 soundcloud 模块的 Node

转载 作者:行者123 更新时间:2023-11-30 12:10:16 25 4
gpt4 key购买 nike

如何在 Node 中访问 soundcloud api,当我尝试在 Node 中为 soundcloud api 模块声明变量时出现错误。

这是我的代码:

var express = require('express'),
app = express(),
path = require('path'),
SC = require('soundcloud'); //causing my server won't run

app.get('/', function(req,res){
res.sendFile(path.join(__dirname + '/indexAPI.html'));
});

app.listen(8080);

我收到这样的错误消息:TypeError: Cannot read property 'getUserMedia' of undefined

当尝试使用 soundcloud api 时,'getUserMedia' 是什么意思,为什么当我刚开始为 soundcloud api 声明变量 SC = require('soundcloud'); 时会发生这种情况?

最佳答案

您正在尝试使用您将在前端使用的 Soundcloud 库。

相反,您需要使用 Node Soundcloud 库。

npm install --save node-soundcloud

然后 var SC = require('node-soundcloud');

有关此包的更多信息:https://www.npmjs.com/package/node-soundcloud

关于javascript - 带有 soundcloud 模块的 Node ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34001845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com