使用 angular-meteor 的 HTTP 调用

HTTP call with angular-meteor

我正在尝试让 HTTP.callangular-meteor 一起工作。

在我的 API(后端)文件夹中,我正在尝试以下方法:

this.unblock();
try {
  const result = HTTP.call('GET', 'https://api.foursquare.com/v2/users/self?oauth_token=RHFPPND0TSNNC0FUADM2FO3CVTRX3T1KS1IKC2245YRENYYS&v=20170928');
  return result;
} catch (e) {
  return false;
}

而且总是returnsfalse

似乎 HTTP.call 总是失败,我认为这是因为没有 import { HTTP } from 'meteor/http'; 导致我的代码崩溃:

Can't find npm module 'meteor/http'."

我不确定我做错了什么。

来自Meteor HTTP documentation

HTTP provides an HTTP request API on the client and server. To use these functions, add the HTTP package to your project by running in your terminal:

meteor add http