View Single Post
Old November 28th, 2012, 01:19 AM   #1 (permalink)
Partha Bhowmik
New Member
Thread Author (OP)
 
Join Date: Nov 2012
Posts: 1
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default Android:Google Plus profile feed.

Using Google Api in Google Plus I am getting the public posts performed by that particular user(Logged in by whom) only as follows::

private Person profile = null;
profile = plus.people().get("me").execute();
Plus.Activities.List list = plus.activities().list(id,"public");

((com.google.api.services.plus.Plus.Activities.Lis t)list).setMaxResults(Long.parseLong("50"));
ActivityFeed feed = ((com.google.api.services.plus.Plus.Activities.Lis t) list).execute();

How do I get all the posts performed by the user as well as by the other users(friends) as shown in the Google plus user profile?
Partha Bhowmik is offline  
Reply With Quote