node-apontador

1.8.0 • Public • Published

Node Apontador - build status

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.8.0
    1
    • latest

Version History

Package Sidebar

Install

npm i node-apontador

Weekly Downloads

1

Version

1.8.0

License

ISC

Last publish

Collaborators

  • flpms