I want to integrate Instagram in my Android application. Successfully I finished login, but I don’t know how to get user shared images through Instagram. I have tried so far to get the user info:
URL url = new URL(API_URL + "/users/" + mSession.getId() + "/?access_token=" + mAccessToken);
Then I got a link for to get user photos here, but on that link I don’t know what is PhotoSet set = new PhotoSet(); and thesets.add(set);
.
Anyone please explain the above link or give me any other sample code to solve this problem.