node-apontador
v1.8.0
Published
Node.js module for interacting with Apontador API v2.0
Downloads
12
Readme
Node Apontador -
Node.js module for interacting with Apontador API v2.0
Install
npm install node-apontador --save
Usage
var apontador = require('apontador');
var client = apontador.createClient({
clientSecret: 'nId4d7RfOyTWxSeZoIkTFskw0xT~',
clientId: 'test_node_apontador'
});
client.search({q:'Place to find'}, function(err, sucess){
if (err) {
throw err;
}
console.log(sucess);
});
Usage
- Search
client.search({ q : 'mazza restaurante', fq : 'address.city:"santo andre"' }, function() {
if (err) {
throw err;
}
console.log(sucess);
});
- Search for addresses
apt.addresses({ q : 'Av. Paulista', fq : 'address.city:"Sao Paulo"' }, function(err, sucess) {
if (err) {
throw err;
}
console.log(sucess);
});
- Search a place for a ID
apt.getPlaceById('C408483939344N344B', function(err, sucess) {
if (err) {
throw err;
}
console.log(sucess);
});
- Search for photos
// Send placeID to get photos
apt.getPlacePhotos('C408483939344N344B', function(err, sucess) {
if (err) {
throw err;
}
console.log(sucess);
});
- Search for a zipcode
// Send a brazilian zipcode to get places.
apt.getPlacesByZipcode('09090780', function(err, sucess) {
if (err) {
throw err;
}
console.log(sucess);
});
- Search for a zipcode
// Send placeID to get reviews
apt.getPlaceReview('C408483939344N344B', function(err, sucess) {
if (err) {
throw err;
}
console.log(sucess);
});
Informations
You can get more informations about Apontador API here. Apontador is a Brazilian local search, and only list at moment places in Brazil.
This software is not provide by Apontador or yours employees.