1.8.0 • Published 9 years ago

node-apontador v1.8.0

Weekly downloads
4
License
ISC
Repository
github
Last release
9 years ago

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.

1.8.0

9 years ago

1.7.0

10 years ago

1.6.1

10 years ago

1.6.0

10 years ago

1.5.0

10 years ago

1.4.3

10 years ago

1.4.2

10 years ago

1.4.1

10 years ago

1.0.0

10 years ago