Package com.sola.instagram

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


    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

Related Classes of com.sola.instagram.InstagramSession

Copyright © 2018 www.massapicom. 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.