How to make an API call using meteor

后端 未结 5 2071
别跟我提以往
别跟我提以往 2020-12-07 10:19

Ok here is the twitter API,

http://search.twitter.com/search.atom?q=perkytweets

Can any one give me any hint about how to go about calling

5条回答
  •  青春惊慌失措
    2020-12-07 11:06

    This might seem rudimentary - but the HTTP package does not come by default in your Meteor project and requires that you install it a la carte.

    On the command line either:

    1. Just Meteor:
      meteor add http

    2. Meteorite:
      mrt add http

    Meteor HTTP Docs

提交回复
热议问题