Skip to content

Instantly share code, notes, and snippets.

@mdobson
Created December 16, 2013 14:05
Show Gist options
  • Save mdobson/7987405 to your computer and use it in GitHub Desktop.
Save mdobson/7987405 to your computer and use it in GitHub Desktop.
Acitivity Feeds work around
//We can use Apigee.Collection or Usergrid.Collection objects in the place of some built in functions to get query goodness.
var activities = new Apigee.Collection({
type:"users/mdobs/feed",
client:apigee,
qs: {
ql: "where actor.displayName='mdobs'"
}
});
activities.fetch(function(err, result) {
console.log(arguments);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment