-
-
Save mdobson/7987405 to your computer and use it in GitHub Desktop.
Acitivity Feeds work around
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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