Javascript101 帮助 | API |卡住

Javascript101 help | API | stuck

根据 Pushbullet API 文档,我需要:Header 作为:'Access-Token: o.I'veLearnedNotToPost' 'Content-Type": "application/json' Url 是 https://api.pushbullet.com/v2/users/me

我的代码有问题(别笑得太厉害)只是 returns "Retrieving information for o.I'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())
})}

在此先感谢您的帮助! 不胜感激! -马尔克

你的 Access-Token 值是双引号的,不用的话试试。