Skip to content

Instantly share code, notes, and snippets.

@mtt87
Last active May 17, 2016 22:23
Show Gist options
  • Save mtt87/400f7eb0e9875daf353275573e86e545 to your computer and use it in GitHub Desktop.
Save mtt87/400f7eb0e9875daf353275573e86e545 to your computer and use it in GitHub Desktop.
var client = contentful.createClient({space: ‘a2b2c3d4e5’, accessToken: ‘not_a_secret’});
// retrieve the data with content_type = job
client.getEntries({'content_type': 'job'})
.then(function (entries) {
// do stuff
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment