Skip to content

Instantly share code, notes, and snippets.

@IbrahimTareq
Created June 17, 2018 23:22
Show Gist options
  • Save IbrahimTareq/99cf9b17857074a2be44363016c7e130 to your computer and use it in GitHub Desktop.
Save IbrahimTareq/99cf9b17857074a2be44363016c7e130 to your computer and use it in GitHub Desktop.
Code snippet on how to retrieve all users associated with your Facebook page using the MessageMedia Conversations Node.js SDK.
const lib = require('messagemedia-conversations-sdk');
// Configuration parameters and credentials
lib.Configuration.basicAuthUserName = "API_KEY"; // The username to use with basic authentication
lib.Configuration.basicAuthPassword = "API_SECRET"; // The password to use with basic authentication
var controller = lib.AppUsersController;
controller.getAppUsers(function(error, response, context) {
console.log(response);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment