每个 Pushbullet API 文档我需要: 标题为:'Access-Token: oI'veLearnedNotToPost' 'Content-Type": "application/json' Url is https://api.pushbullet.com/v2/users/me
我的代码的问题(不要笑得太厉害)是它只返回“检索 oI'veLearnedNotToPost 的信息”
前端代码需要从用户输入文本元素中获取令牌并将其放入后端代码(getuser.jsw)中以获取用户信息。但问题是它不是 - 除了占位符文本出现在文本框元素(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())
})}
在此先感谢您的帮助!非常感激!-马尔克