gorbin / ASNE

ASNE library for simple integration of social networks: Twitter, Facebook, Google Plus, LinkedIn, Instagram, Vkontakte, Odnoklassniki
883 stars 227 forks source link

What about requestGetPhotos? #51

Open iq1 opened 9 years ago

iq1 commented 9 years ago

I'm trying to get photos of my friends and there are not such method in ASNE. Now i need to write my own code. For example:

final VKRequest request = new VKRequest("photos.getAll", VKParameters.from(VKApiConst.OWNER_ID, friendId, VKApiConst.COUNT, 200));
                request.executeWithListener(vkRequestListener);

But it's hard to make same request to Instagram. And it requires to define own SocialNetwork class like MyInstagram. Didn't chek other social networks.

gorbin commented 9 years ago

I don't think about adding more social methods Main idea of ASNE is simple integration with social networks for common data and actions like tokens, friendslist, about user info, share actions, authorization

If you got tokens, you got authorized user you can easily add any other methods like getting photos or feed without all workaround with auth

Set it for votes and if it is necessary will add it.

If you got tokens, you got authorized user you can easily add any other methods like getting photos or feed without all workaround with auth

Set it for votes and if it is neccessary will add it.