每个Pushbullet API文档我都需要:标头为:“访问令牌:o.I'veLearnedNotToPost”“内容类型”:“ application / json”网址为https://api.pushbullet.com/v2/users/me
我的代码存在问题(不要太笑了)是它仅返回“检索o.I'veLearnedNotToPost的信息”
前端代码需要从用户输入的文本元素中获取令牌,并将其放入后端代码(getuser.jsw)中以获取用户信息。但是问题在于,不是这样-除了占位符文本出现在textbox元素中(id #result)
侧面说明:$ w是Wix对元素的写入
// FRONT END CODE
import {getUserInfo} from 'backend/getuser';
export function button1_click(event, $w) {
console.log("Retrieving information for " + $w("#sendToken").value);
getUserInfo($w("#sendToken").value)
.then(usInfo => {
($w("#result").text)
});
}
//BACKEND CODE
import {fetch} from 'wix-fetch';
export function getUserInfo(token) {
let atoken = token;
let url = "https://api.pushbullet.com/v2/users/me";
console.log("Retrieving information for " + atoken);
return fetch("https://api.pushbullet.comm/v2/users/me", {
headers: {
"Access-Token": atoken,
"Content-Type": "application/json"
}
.then(response => response.json())
})}
预先感谢您的帮助! 非常感激! -苹果粉
答案 0 :(得分:1)
您的访问令牌值用双引号引起来,请尝试不使用。