• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps 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.List)list).setMaxResults(Long.parseLong("50"));
ActivityFeed feed = ((com.google.api.services.plus.Plus.Activities.List) 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?
 
Welcome to the forums Partha, glad to have you here :)

Looks like you are doing a little Dev work here so I am going to move this thread into Application Development.

Hope this is alright! :D
 
Back
Top Bottom