hi everybody,
i am new to this topic, researched a lot, but not on the right way?..and thats why no very successfull :(
this is my code yet:
OffsiteContext c = new OffsiteContext(key, secret);
c.setAccessToken(new OAuthToken(accessTokenKey, accessTokenSecret));
String id = c.getUserId();
String activities = r.getActivitiesAtom(id);
out.println(activities);
this enables me to get my own activities.
but how can i get my friends activities?
i tried to get one friends id, and then using it this way:
String friendsActivities = r.getActivitiesAtom(friendId);
out.println(friendsActivities);
but unfortunatelly this doesnt work :(
is there any other way to handle this?
please help!
thanks a lot!