Reputation: 3051
I just tried using the Google Plus Api, and wanted to retrieve all the activities displayed on my front page. However, using the activities.list from the API gave me 0 results, since I never posted on Google Plus. Is there any way to obtain all the activities present there, like I would get all the posts on Facebook Wall? thanks
Upvotes: 2
Views: 737
Reputation: 702
You can get anyone's public activity! The only way to achieve the results, seen on your wall is a bit stupid, but is the only:) 1) get your friends via the "people/me/people/visible" edge and store user ID's; 2) cycle for each user for their public activities via "people/{user_id}/activities/public";
Good luck. :)
Upvotes: 4