Only show activities from a specific gadget in OpenSocial
Posted
by corné
on Stack Overflow
See other posts from Stack Overflow
or by corné
Published on 2010-04-15T12:28:49Z
Indexed on
2010/04/15
12:33 UTC
Read the original article
Hit count: 417
I created a gadget which is able to post activities:
function postActivity(text) {
var params = {};
params[opensocial.Activity.Field.TITLE] = text;
var activity = opensocial.newActivity(params);
opensocial.requestCreateActivity(activity, opensocial.CreateActivityPriority.HIGH);
};
And I request activities by doing:
req.add(req.newFetchActivitiesRequest( new opensocial.IdSpec({'userId' : 'VIEWER', 'groupId' : 'FRIENDS'})), 'friends_activities');
My question is: How can I filter activities to only show activities posted by a specific gadget?
I reckon the field "appId" is meant for this, but this field is empty in the response.
© Stack Overflow or respective owner