1.0.0 • Published 11 years ago

familysearch v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
11 years ago

FamilySearch API

FS

getMeta()

Load the endpoints from the Discovery resource. These are then cached.

get(resource, options, token, next)

Example with the person resource and the person with relationships resource:

fs.get('person-template', {pid: 'SOME-PID'}, 'U-token@example.com', function (err, data) {
  if (err) throw err;
  data.persons.forEach(function (person) {
    console.log('Got person', person.display.name);
  });
}).get('person-with-relationships-query', {person: 'SOME-PID'}, 'U-token@example.com', function (err, data) {
  if (err) throw err;
  data.childAndParentsRelationships.forEach(function (rel) {
    console.log('Father:', rel.father && rel.father.resourceId);
  });
});
1.0.0

11 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago