Examples of InstagramSession


Examples of com.sola.instagram.InstagramSession

    getNewSession().getTag("yolo");
  }

  @Test
  public void testGetRecentMediaForTag() throws Exception {
    InstagramSession session = getNewSession();
    getNewSession().getRecentMediaForTag("#iphone");
    PaginatedCollection<Media> media = session.getRecentMediaForTag("yolo");
    int i = 0;
    for(Media _media: media) {
      System.out.println(_media);
      if(i++ == 50) {
        break;
View Full Code Here

Examples of com.sola.instagram.InstagramSession

    getNewSession().getLocation(Constants.VALID_LOCATION_ID);
  }

  @Test
  public void testGetRecentMediaFromLocation() throws Exception {
    InstagramSession session = getNewSession();
    PaginatedCollection<Media> media = session.getRecentMediaFromLocation(Constants.VALID_LOCATION_ID);
    int i = 0;
    for(Media _media: media) {
      System.out.println(_media);
      if(i++ == 50) {
        break;
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.