Module: node-foursquare/Tips

node-foursquare/Tips

A module for retrieving information about Tips from Foursquare.

Source:
../node-foursquare/lib/tips.js, line 1

Methods

<static> getTip(tipId, [accessToken], callback)

Retrieve a Tip.

Source:
../node-foursquare/lib/tips.js, line 19
See:
  • https://developer.foursquare.com/docs/tips/tips.html
Parameters:
Name Type Argument Description
tipId String The id of a Tip.
accessToken String <optional>
The access token provided by Foursquare for the current user.
callback Function The function to call with results, function({Error} error, {Object} results).

Search for tips around a location.

Source:
../node-foursquare/lib/tips.js, line 42
See:
  • http://developer.foursquare.com/docs/tips/search.html
Parameters:
Name Type Argument Description
lat String | Number The latitude of the location around which to search.
lng String | Number The longitude of the location around which to search.
params Object <optional>
An object containing additional parameters. Refer to Foursquare documentation for details on currently supported parameters.
accessToken String <optional>
The access token provided by Foursquare for the current user.
callback Function The function to call with results, function({Error} error, {Object} results).