Anywhere 
HTTP.get(url, [callOptions], [asyncCallback])
import { HTTP } from 'meteor/http' Source Send an HTTP GET request. Equivalent to calling HTTP.call with "GET" as the first argument.
Arguments
- url String
 -  
The URL to which the request should be sent.
 - callOptions Object
 -  
Options passed on to
HTTP.call. - asyncCallback Function
 -  
Callback that is called when the request is completed. Required on the client.
 
Please login to continue.