Examples of likeMedia()


Examples of com.sola.instagram.InstagramSession.likeMedia()

  @Test
  public void testLikingAndUnlikingMedia() throws Exception {
    Random rand = new Random(19580427);
    InstagramSession session = getNewSession();
    Media media = session.getPopularMedia().get(rand.nextInt() % 10);
    session.likeMedia(media.getId());
    session.removeMediaLike(media.getId());
  }

  @Test
  public void testGetTag() throws Exception {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.