获取错误401在Quickblox中创建会话时未经授权是我用来在quickblox中创建会话的代码
var QBUser = {email: "user@user.com",password: "password123"}
QB.createSession(QBUser, function(err, result) {
if (err) {
console.log('QB >>> Something went wrong: ' + JSON.stringify(err));
} else {
console.log('QB at create session >>> result: ' + JSON.stringify(result));
}
});
让我知道为什么我会收到401错误以及如何解决此错误?
答案 0 :(得分:0)
试试这个。这对我有用。
QB.createSession(function(err, result) {
// callback function
QB.users.create(params, function(err, user){
if (user) {
// success
console.log(user);
} else {
// error
console.log(err);
}
});
});