Python 提取Twitter用户的Tweet


CODE:

#!/usr/bin/python 
# -*- coding: utf-8 -*-

'''
Created on 2014-7-31
@author: guaguastd
@name: harvest_user_tweet.py
'''

if __name__ == '__main__':
    
    # import json
    import json
    
    # import search
    from search import search_for_tweet
    
    # import harvest_user_timeline
    from user import harvest_user_timeline
    
    # import login, see http://blog.csdn.net/guaguastd/article/details/31706155
    from login import twitter_login

    # get the twitter access api
    twitter_api = twitter_login()
    
    # import twitter_text
    import twitter_text
    
    while 1:
        query = raw_input('\nInput the query (eg. #MentionSomeoneImportantForYou, exit to quit): ')
        
        if query == 'exit':
            print 'Successfully exit!'
            break
        
        statuses = search_for_tweet(twitter_api, query) 
        ex = twitter_text.Extractor(statuses)     
        
        screen_names = ex.extract_mentioned_screen_names_with_indices()
        screen_names = [screen_name['screen_name']
                        for screen_name in screen_names]
                
        for screen_name in screen_names:
            #print json.dumps(screen_names, indent=1)  
            tweets = harvest_user_timeline(twitter_api, screen_name=screen_name, max_results=200)
            print json.dumps(tweets, indent=1)

RESULT:

  "in_reply_to_status_id": null, 
  "id": 492075239283884032, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 403255314, 
     "indices": [
      3, 
      13
     ], 
     "id_str": "403255314", 
     "screen_name": "Calum5SOS", 
     "name": "Calum Hood"
    }
   ], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "491636366287990784", 
     "expanded_url": "http://twitter.com/Calum5SOS/status/491636366287990784/photo/1", 
     "display_url": "pic.twitter.com/oP6eckFBKH", 
     "url": "http://t.co/oP6eckFBKH", 
     "media_url_https": "https://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg", 
     "source_status_id": 491636366287990784, 
     "id_str": "491636365616873472", 
     "sizes": {
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 724
      }, 
      "small": {
       "h": 481, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 849, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      15, 
      37
     ], 
     "type": "photo", 
     "id": 491636365616873472, 
     "media_url": "http://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492075239283884032", 
  "retweet_count": 26412, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "http://t.co/oP6eckFBKH", 
   "in_reply_to_status_id": null, 
   "id": 491636366287990784, 
   "favorite_count": 58295, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/Calum5SOS/status/491636366287990784/photo/1", 
      "display_url": "pic.twitter.com/oP6eckFBKH", 
      "url": "http://t.co/oP6eckFBKH", 
      "media_url_https": "https://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg", 
      "id_str": "491636365616873472", 
      "sizes": {
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 724
       }, 
       "small": {
        "h": 481, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 849, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       0, 
       22
      ], 
      "type": "photo", 
      "id": 491636365616873472, 
      "media_url": "http://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491636366287990784", 
   "retweet_count": 26412, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 403255314, 
    "id_str": "403255314"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "und", 
   "created_at": "Tue Jul 22 17:30:18 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/Calum5SOS/status/491636366287990784/photo/1", 
      "display_url": "pic.twitter.com/oP6eckFBKH", 
      "url": "http://t.co/oP6eckFBKH", 
      "media_url_https": "https://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg", 
      "id_str": "491636365616873472", 
      "sizes": {
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 724
       }, 
       "small": {
        "h": 481, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 849, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       0, 
       22
      ], 
      "type": "photo", 
      "id": 491636365616873472, 
      "media_url": "http://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "und", 
  "created_at": "Wed Jul 23 22:34:14 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491636366287990784", 
     "expanded_url": "http://twitter.com/Calum5SOS/status/491636366287990784/photo/1", 
     "display_url": "pic.twitter.com/oP6eckFBKH", 
     "url": "http://t.co/oP6eckFBKH", 
     "media_url_https": "https://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg", 
     "source_status_id": 491636366287990784, 
     "id_str": "491636365616873472", 
     "sizes": {
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 724
      }, 
      "small": {
       "h": 481, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 849, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      15, 
      37
     ], 
     "type": "photo", 
     "id": 491636365616873472, 
     "media_url": "http://pbs.twimg.com/media/BtKkq3NCAAAbXGi.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Luke5SOS: Just realised I haven't posted the album yet !\nIt's out in America, Mexico and Canada!\nhttp://t.co/JpIZFSD5Nr hope you love i\u2026", 
  "in_reply_to_status_id": null, 
  "id": 492074735090802688, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 403245020, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "403245020", 
     "screen_name": "Luke5SOS", 
     "name": "Luke Hemmings"
    }
   ], 
   "hashtags": [], 
   "urls": [
    {
     "url": "http://t.co/JpIZFSD5Nr", 
     "indices": [
      101, 
      123
     ], 
     "expanded_url": "http://po.st/OR93y4", 
     "display_url": "po.st/OR93y4"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492074735090802688", 
  "retweet_count": 22904, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Just realised I haven't posted the album yet !\nIt's out in America, Mexico and Canada!\nhttp://t.co/JpIZFSD5Nr hope you love it !", 
   "in_reply_to_status_id": null, 
   "id": 492012528961323008, 
   "favorite_count": 53147, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": [
     {
      "url": "http://t.co/JpIZFSD5Nr", 
      "indices": [
       87, 
       109
      ], 
      "expanded_url": "http://po.st/OR93y4", 
      "display_url": "po.st/OR93y4"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492012528961323008", 
   "retweet_count": 22904, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 403245020, 
    "id_str": "403245020"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Wed Jul 23 18:25:02 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 22:32:13 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Ashton5SOS: New shoes http://t.co/3ZhbvithLh", 
  "in_reply_to_status_id": null, 
  "id": 492074520325668865, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 439125710, 
     "indices": [
      3, 
      14
     ], 
     "id_str": "439125710", 
     "screen_name": "Ashton5SOS", 
     "name": "Ashton Irwin"
    }
   ], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "492059685344661504", 
     "expanded_url": "http://twitter.com/Ashton5SOS/status/492059685344661504/photo/1", 
     "display_url": "pic.twitter.com/3ZhbvithLh", 
     "url": "http://t.co/3ZhbvithLh", 
     "media_url_https": "https://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg", 
     "source_status_id": 492059685344661504, 
     "id_str": "492059684329644034", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      26, 
      48
     ], 
     "type": "photo", 
     "id": 492059684329644034, 
     "media_url": "http://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492074520325668865", 
  "retweet_count": 34919, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "New shoes http://t.co/3ZhbvithLh", 
   "in_reply_to_status_id": null, 
   "id": 492059685344661504, 
   "favorite_count": 74615, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/Ashton5SOS/status/492059685344661504/photo/1", 
      "display_url": "pic.twitter.com/3ZhbvithLh", 
      "url": "http://t.co/3ZhbvithLh", 
      "media_url_https": "https://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg", 
      "id_str": "492059684329644034", 
      "sizes": {
       "small": {
        "h": 453, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 768
       }, 
       "medium": {
        "h": 800, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       10, 
       32
      ], 
      "type": "photo", 
      "id": 492059684329644034, 
      "media_url": "http://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492059685344661504", 
   "retweet_count": 34919, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 439125710, 
    "id_str": "439125710"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": true, 
   "lang": "en", 
   "created_at": "Wed Jul 23 21:32:25 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/Ashton5SOS/status/492059685344661504/photo/1", 
      "display_url": "pic.twitter.com/3ZhbvithLh", 
      "url": "http://t.co/3ZhbvithLh", 
      "media_url_https": "https://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg", 
      "id_str": "492059684329644034", 
      "sizes": {
       "small": {
        "h": 453, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 768
       }, 
       "medium": {
        "h": 800, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       10, 
       32
      ], 
      "type": "photo", 
      "id": 492059684329644034, 
      "media_url": "http://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 22:31:22 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "492059685344661504", 
     "expanded_url": "http://twitter.com/Ashton5SOS/status/492059685344661504/photo/1", 
     "display_url": "pic.twitter.com/3ZhbvithLh", 
     "url": "http://t.co/3ZhbvithLh", 
     "media_url_https": "https://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg", 
     "source_status_id": 492059685344661504, 
     "id_str": "492059684329644034", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      26, 
      48
     ], 
     "type": "photo", 
     "id": 492059684329644034, 
     "media_url": "http://pbs.twimg.com/media/BtQlrQTCYAIXwlr.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Ashton5SOS: Whys everything so tame... I like my life insane", 
  "in_reply_to_status_id": null, 
  "id": 492074510104133633, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 439125710, 
     "indices": [
      3, 
      14
     ], 
     "id_str": "439125710", 
     "screen_name": "Ashton5SOS", 
     "name": "Ashton Irwin"
    }
   ], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492074510104133633", 
  "retweet_count": 35511, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Whys everything so tame... I like my life insane", 
   "in_reply_to_status_id": null, 
   "id": 492053285595926529, 
   "favorite_count": 64623, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492053285595926529", 
   "retweet_count": 35511, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 439125710, 
    "id_str": "439125710"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 21:06:59 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 22:31:20 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "Me and ash are currently bonding over funny animals", 
  "in_reply_to_status_id": null, 
  "id": 492070489062252544, 
  "favorite_count": 46933, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492070489062252544", 
  "retweet_count": 21428, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 22:15:21 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @malstephens4: Pretty cool to see this in America!! Can't wait to watch it! #5SOSKIMMEL \ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83c\udfb6\ud83c\udfb6\ud83c\udfb6\ud83c\udfb6\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8 @5SOS http://t.co/8Dhlae0RMv", 
  "in_reply_to_status_id": null, 
  "id": 492065538315927552, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 257214883, 
     "indices": [
      3, 
      16
     ], 
     "id_str": "257214883", 
     "screen_name": "malstephens4", 
     "name": "Ally Stephens"
    }, 
    {
     "id": 264107729, 
     "indices": [
      112, 
      117
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      79, 
      90
     ], 
     "text": "5SOSKIMMEL"
    }
   ], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "489279842735509504", 
     "expanded_url": "http://twitter.com/malstephens4/status/489279842735509504/photo/1", 
     "display_url": "pic.twitter.com/8Dhlae0RMv", 
     "url": "http://t.co/8Dhlae0RMv", 
     "media_url_https": "https://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg", 
     "source_status_id": 489279842735509504, 
     "id_str": "489279841678528512", 
     "sizes": {
      "large": {
       "h": 768, 
       "resize": "fit", 
       "w": 1024
      }, 
      "small": {
       "h": 255, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 450, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      118, 
      140
     ], 
     "type": "photo", 
     "id": 489279841678528512, 
     "media_url": "http://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492065538315927552", 
  "retweet_count": 2753, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Pretty cool to see this in America!! Can't wait to watch it! #5SOSKIMMEL \ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\ude1c\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83c\udfb6\ud83c\udfb6\ud83c\udfb6\ud83c\udfb6\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8\ud83c\udfb8 @5SOS http://t.co/8Dhlae0RMv", 
   "in_reply_to_status_id": null, 
   "id": 489279842735509504, 
   "favorite_count": 12177, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 264107729, 
      "indices": [
       94, 
       99
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [
     {
      "indices": [
       61, 
       72
      ], 
      "text": "5SOSKIMMEL"
     }
    ], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/malstephens4/status/489279842735509504/photo/1", 
      "display_url": "pic.twitter.com/8Dhlae0RMv", 
      "url": "http://t.co/8Dhlae0RMv", 
      "media_url_https": "https://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg", 
      "id_str": "489279841678528512", 
      "sizes": {
       "large": {
        "h": 768, 
        "resize": "fit", 
        "w": 1024
       }, 
       "small": {
        "h": 255, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 450, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       100, 
       122
      ], 
      "type": "photo", 
      "id": 489279841678528512, 
      "media_url": "http://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "489279842735509504", 
   "retweet_count": 2753, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 257214883, 
    "id_str": "257214883"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Wed Jul 16 05:26:19 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/malstephens4/status/489279842735509504/photo/1", 
      "display_url": "pic.twitter.com/8Dhlae0RMv", 
      "url": "http://t.co/8Dhlae0RMv", 
      "media_url_https": "https://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg", 
      "id_str": "489279841678528512", 
      "sizes": {
       "large": {
        "h": 768, 
        "resize": "fit", 
        "w": 1024
       }, 
       "small": {
        "h": 255, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 450, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       100, 
       122
      ], 
      "type": "photo", 
      "id": 489279841678528512, 
      "media_url": "http://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 21:55:41 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "489279842735509504", 
     "expanded_url": "http://twitter.com/malstephens4/status/489279842735509504/photo/1", 
     "display_url": "pic.twitter.com/8Dhlae0RMv", 
     "url": "http://t.co/8Dhlae0RMv", 
     "media_url_https": "https://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg", 
     "source_status_id": 489279842735509504, 
     "id_str": "489279841678528512", 
     "sizes": {
      "large": {
       "h": 768, 
       "resize": "fit", 
       "w": 1024
      }, 
      "small": {
       "h": 255, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 450, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      118, 
      140
     ], 
     "type": "photo", 
     "id": 489279841678528512, 
     "media_url": "http://pbs.twimg.com/media/BspFbHcCEAAyqzN.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @FiveSOSHelping: guysss tomorrow I'm going to #5SOSKIMMEL and I'm so excited! \ud83d\ude0d -B", 
  "in_reply_to_status_id": null, 
  "id": 492065358145400834, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 2547245400, 
     "indices": [
      3, 
      18
     ], 
     "id_str": "2547245400", 
     "screen_name": "FiveSOSHelping", 
     "name": "\u2606 5SOS Follow Help \u2606"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      49, 
      60
     ], 
     "text": "5SOSKIMMEL"
    }
   ], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492065358145400834", 
  "retweet_count": 2049, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "guysss tomorrow I'm going to #5SOSKIMMEL and I'm so excited! \ud83d\ude0d -B", 
   "in_reply_to_status_id": null, 
   "id": 492029635207516160, 
   "favorite_count": 10190, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [
     {
      "indices": [
       29, 
       40
      ], 
      "text": "5SOSKIMMEL"
     }
    ], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492029635207516160", 
   "retweet_count": 2049, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 2547245400, 
    "id_str": "2547245400"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 19:33:01 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 21:54:58 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @kissinghoran: 5sos have one of the greatest support systems i mean they have their family, us, and even some of their favorite bands", 
  "in_reply_to_status_id": null, 
  "id": 492052549713686528, 
  "favorite_count": 0, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 65768691, 
     "indices": [
      3, 
      16
     ], 
     "id_str": "65768691", 
     "screen_name": "kissinghoran", 
     "name": "Courtney"
    }
   ], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492052549713686528", 
  "retweet_count": 6901, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "5sos have one of the greatest support systems i mean they have their family, us, and even some of their favorite bands", 
   "in_reply_to_status_id": null, 
   "id": 492049126003982337, 
   "favorite_count": 18003, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492049126003982337", 
   "retweet_count": 6901, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 65768691, 
    "id_str": "65768691"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 20:50:28 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 21:04:04 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "\"And two them have chest hair\"", 
  "in_reply_to_status_id": null, 
  "id": 492052087614607360, 
  "favorite_count": 41680, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492052087614607360", 
  "retweet_count": 19762, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 21:02:14 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @AltPress: Amazing producer, @JohnFeldy's take on @5SOS success. #BringGuitarsBackToTheRadio http://t.co/Qu1vgaQjyW", 
  "in_reply_to_status_id": null, 
  "id": 492047141553311744, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 14925700, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "14925700", 
     "screen_name": "AltPress", 
     "name": "Alternative Press"
    }, 
    {
     "id": 110575285, 
     "indices": [
      32, 
      42
     ], 
     "id_str": "110575285", 
     "screen_name": "JohnFeldy", 
     "name": "John Feldmann"
    }, 
    {
     "id": 264107729, 
     "indices": [
      53, 
      58
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      68, 
      95
     ], 
     "text": "BringGuitarsBackToTheRadio"
    }
   ], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "492031174362271745", 
     "expanded_url": "http://twitter.com/AltPress/status/492031174362271745/photo/1", 
     "display_url": "pic.twitter.com/Qu1vgaQjyW", 
     "url": "http://t.co/Qu1vgaQjyW", 
     "media_url_https": "https://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg", 
     "source_status_id": 492031174362271745, 
     "id_str": "492031173712154625", 
     "sizes": {
      "small": {
       "h": 340, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "medium": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      96, 
      118
     ], 
     "type": "photo", 
     "id": 492031173712154625, 
     "media_url": "http://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492047141553311744", 
  "retweet_count": 8629, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Amazing producer, @JohnFeldy's take on @5SOS success. #BringGuitarsBackToTheRadio http://t.co/Qu1vgaQjyW", 
   "in_reply_to_status_id": null, 
   "id": 492031174362271745, 
   "favorite_count": 18950, 
   "source": "Twitter Web Client", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 110575285, 
      "indices": [
       18, 
       28
      ], 
      "id_str": "110575285", 
      "screen_name": "JohnFeldy", 
      "name": "John Feldmann"
     }, 
     {
      "id": 264107729, 
      "indices": [
       39, 
       44
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [
     {
      "indices": [
       54, 
       81
      ], 
      "text": "BringGuitarsBackToTheRadio"
     }
    ], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/AltPress/status/492031174362271745/photo/1", 
      "display_url": "pic.twitter.com/Qu1vgaQjyW", 
      "url": "http://t.co/Qu1vgaQjyW", 
      "media_url_https": "https://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg", 
      "id_str": "492031173712154625", 
      "sizes": {
       "small": {
        "h": 340, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 600, 
        "resize": "fit", 
        "w": 600
       }, 
       "medium": {
        "h": 600, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       82, 
       104
      ], 
      "type": "photo", 
      "id": 492031173712154625, 
      "media_url": "http://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492031174362271745", 
   "retweet_count": 8629, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 14925700, 
    "id_str": "14925700"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Wed Jul 23 19:39:08 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/AltPress/status/492031174362271745/photo/1", 
      "display_url": "pic.twitter.com/Qu1vgaQjyW", 
      "url": "http://t.co/Qu1vgaQjyW", 
      "media_url_https": "https://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg", 
      "id_str": "492031173712154625", 
      "sizes": {
       "small": {
        "h": 340, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 600, 
        "resize": "fit", 
        "w": 600
       }, 
       "medium": {
        "h": 600, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       82, 
       104
      ], 
      "type": "photo", 
      "id": 492031173712154625, 
      "media_url": "http://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 20:42:35 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "492031174362271745", 
     "expanded_url": "http://twitter.com/AltPress/status/492031174362271745/photo/1", 
     "display_url": "pic.twitter.com/Qu1vgaQjyW", 
     "url": "http://t.co/Qu1vgaQjyW", 
     "media_url_https": "https://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg", 
     "source_status_id": 492031174362271745, 
     "id_str": "492031173712154625", 
     "sizes": {
      "small": {
       "h": 340, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "medium": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      96, 
      118
     ], 
     "type": "photo", 
     "id": 492031173712154625, 
     "media_url": "http://pbs.twimg.com/media/BtQLvt-IEAEYRvv.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Ashton5SOS: This morning I ate a huge omelette and I don't even like eggs", 
  "in_reply_to_status_id": null, 
  "id": 492047091167154176, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 439125710, 
     "indices": [
      3, 
      14
     ], 
     "id_str": "439125710", 
     "screen_name": "Ashton5SOS", 
     "name": "Ashton Irwin"
    }
   ], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492047091167154176", 
  "retweet_count": 28606, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "This morning I ate a huge omelette and I don't even like eggs", 
   "in_reply_to_status_id": null, 
   "id": 492000433469005824, 
   "favorite_count": 63722, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492000433469005824", 
   "retweet_count": 28606, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 439125710, 
    "id_str": "439125710"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 17:36:58 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 20:42:23 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @ETCanada: Tonight on #ETCanada our @5SOS week continues! Plus go 2 http://t.co/71WIashfS3 for a chance to see #5SOS in concert! http://\u2026", 
  "in_reply_to_status_id": null, 
  "id": 492046700086038528, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 26020465, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "26020465", 
     "screen_name": "ETCanada", 
     "name": "ET Canada"
    }, 
    {
     "id": 264107729, 
     "indices": [
      39, 
      44
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      25, 
      34
     ], 
     "text": "ETCanada"
    }, 
    {
     "indices": [
      114, 
      119
     ], 
     "text": "5SOS"
    }
   ], 
   "urls": [
    {
     "url": "http://t.co/71WIashfS3", 
     "indices": [
      71, 
      93
     ], 
     "expanded_url": "http://www.etcanada.com/5SOS", 
     "display_url": "etcanada.com/5SOS"
    }
   ], 
   "media": [
    {
     "source_status_id_str": "491985363418636289", 
     "expanded_url": "http://twitter.com/ETCanada/status/491985363418636289/photo/1", 
     "display_url": "pic.twitter.com/Ck364AKh8F", 
     "url": "http://t.co/Ck364AKh8F", 
     "media_url_https": "https://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg", 
     "source_status_id": 491985363418636289, 
     "id_str": "491985362332295168", 
     "sizes": {
      "large": {
       "h": 586, 
       "resize": "fit", 
       "w": 960
      }, 
      "small": {
       "h": 208, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 366, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491985362332295168, 
     "media_url": "http://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492046700086038528", 
  "retweet_count": 4583, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Tonight on #ETCanada our @5SOS week continues! Plus go 2 http://t.co/71WIashfS3 for a chance to see #5SOS in concert! http://t.co/Ck364AKh8F", 
   "in_reply_to_status_id": null, 
   "id": 491985363418636289, 
   "favorite_count": 15919, 
   "source": "Twitter Web Client", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 264107729, 
      "indices": [
       25, 
       30
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [
     {
      "indices": [
       11, 
       20
      ], 
      "text": "ETCanada"
     }, 
     {
      "indices": [
       100, 
       105
      ], 
      "text": "5SOS"
     }
    ], 
    "urls": [
     {
      "url": "http://t.co/71WIashfS3", 
      "indices": [
       57, 
       79
      ], 
      "expanded_url": "http://www.etcanada.com/5SOS", 
      "display_url": "etcanada.com/5SOS"
     }
    ], 
    "media": [
     {
      "expanded_url": "http://twitter.com/ETCanada/status/491985363418636289/photo/1", 
      "display_url": "pic.twitter.com/Ck364AKh8F", 
      "url": "http://t.co/Ck364AKh8F", 
      "media_url_https": "https://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg", 
      "id_str": "491985362332295168", 
      "sizes": {
       "large": {
        "h": 586, 
        "resize": "fit", 
        "w": 960
       }, 
       "small": {
        "h": 208, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 366, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       118, 
       140
      ], 
      "type": "photo", 
      "id": 491985362332295168, 
      "media_url": "http://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491985363418636289", 
   "retweet_count": 4583, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 26020465, 
    "id_str": "26020465"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Wed Jul 23 16:37:05 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/ETCanada/status/491985363418636289/photo/1", 
      "display_url": "pic.twitter.com/Ck364AKh8F", 
      "url": "http://t.co/Ck364AKh8F", 
      "media_url_https": "https://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg", 
      "id_str": "491985362332295168", 
      "sizes": {
       "large": {
        "h": 586, 
        "resize": "fit", 
        "w": 960
       }, 
       "small": {
        "h": 208, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 366, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       118, 
       140
      ], 
      "type": "photo", 
      "id": 491985362332295168, 
      "media_url": "http://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 20:40:49 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491985363418636289", 
     "expanded_url": "http://twitter.com/ETCanada/status/491985363418636289/photo/1", 
     "display_url": "pic.twitter.com/Ck364AKh8F", 
     "url": "http://t.co/Ck364AKh8F", 
     "media_url_https": "https://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg", 
     "source_status_id": 491985363418636289, 
     "id_str": "491985362332295168", 
     "sizes": {
      "large": {
       "h": 586, 
       "resize": "fit", 
       "w": 960
      }, 
      "small": {
       "h": 208, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 366, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491985362332295168, 
     "media_url": "http://pbs.twimg.com/media/BtPiFJSCIAASr90.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @AltPress: They're bringing guitars back to the radio & are this month's cover stars\u2013@5SOS! Preorder now: http://t.co/ytOLPcmAIR http://\u2026", 
  "in_reply_to_status_id": null, 
  "id": 492028247237206017, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 14925700, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "14925700", 
     "screen_name": "AltPress", 
     "name": "Alternative Press"
    }, 
    {
     "id": 264107729, 
     "indices": [
      92, 
      97
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [], 
   "urls": [
    {
     "url": "http://t.co/ytOLPcmAIR", 
     "indices": [
      113, 
      135
     ], 
     "expanded_url": "http://www.altpress.com/preorder", 
     "display_url": "altpress.com/preorder"
    }
   ], 
   "media": [
    {
     "source_status_id_str": "492023357211017216", 
     "expanded_url": "http://twitter.com/AltPress/status/492023357211017216/photo/1", 
     "display_url": "pic.twitter.com/qLLGhqBm58", 
     "url": "http://t.co/qLLGhqBm58", 
     "media_url_https": "https://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg", 
     "source_status_id": 492023357211017216, 
     "id_str": "492023355823128576", 
     "sizes": {
      "small": {
       "h": 170, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 422, 
       "resize": "fit", 
       "w": 843
      }, 
      "medium": {
       "h": 300, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      143, 
      144
     ], 
     "type": "photo", 
     "id": 492023355823128576, 
     "media_url": "http://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492028247237206017", 
  "retweet_count": 10315, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "They're bringing guitars back to the radio & are this month's cover stars\u2013@5SOS! Preorder now: http://t.co/ytOLPcmAIR http://t.co/qLLGhqBm58", 
   "in_reply_to_status_id": null, 
   "id": 492023357211017216, 
   "favorite_count": 27185, 
   "source": "Twitter Web Client", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 264107729, 
      "indices": [
       78, 
       83
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [], 
    "urls": [
     {
      "url": "http://t.co/ytOLPcmAIR", 
      "indices": [
       99, 
       121
      ], 
      "expanded_url": "http://www.altpress.com/preorder", 
      "display_url": "altpress.com/preorder"
     }
    ], 
    "media": [
     {
      "expanded_url": "http://twitter.com/AltPress/status/492023357211017216/photo/1", 
      "display_url": "pic.twitter.com/qLLGhqBm58", 
      "url": "http://t.co/qLLGhqBm58", 
      "media_url_https": "https://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg", 
      "id_str": "492023355823128576", 
      "sizes": {
       "small": {
        "h": 170, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 422, 
        "resize": "fit", 
        "w": 843
       }, 
       "medium": {
        "h": 300, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       122, 
       144
      ], 
      "type": "photo", 
      "id": 492023355823128576, 
      "media_url": "http://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "492023357211017216", 
   "retweet_count": 10315, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 14925700, 
    "id_str": "14925700"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Wed Jul 23 19:08:04 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/AltPress/status/492023357211017216/photo/1", 
      "display_url": "pic.twitter.com/qLLGhqBm58", 
      "url": "http://t.co/qLLGhqBm58", 
      "media_url_https": "https://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg", 
      "id_str": "492023355823128576", 
      "sizes": {
       "small": {
        "h": 170, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 422, 
        "resize": "fit", 
        "w": 843
       }, 
       "medium": {
        "h": 300, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       122, 
       144
      ], 
      "type": "photo", 
      "id": 492023355823128576, 
      "media_url": "http://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 19:27:30 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "492023357211017216", 
     "expanded_url": "http://twitter.com/AltPress/status/492023357211017216/photo/1", 
     "display_url": "pic.twitter.com/qLLGhqBm58", 
     "url": "http://t.co/qLLGhqBm58", 
     "media_url_https": "https://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg", 
     "source_status_id": 492023357211017216, 
     "id_str": "492023355823128576", 
     "sizes": {
      "small": {
       "h": 170, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 422, 
       "resize": "fit", 
       "w": 843
      }, 
      "medium": {
       "h": 300, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      143, 
      144
     ], 
     "type": "photo", 
     "id": 492023355823128576, 
     "media_url": "http://pbs.twimg.com/media/BtQEoqEIgAAWywU.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "were on the cover of this months @AltPress mag :D theres 2 versions if ya want one, so sickk ! http://t.co/gt8O98eahy http://t.co/3tT5FOVpjp", 
  "in_reply_to_status_id": null, 
  "id": 492025270225100800, 
  "favorite_count": 39097, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 14925700, 
     "indices": [
      33, 
      42
     ], 
     "id_str": "14925700", 
     "screen_name": "AltPress", 
     "name": "Alternative Press"
    }
   ], 
   "hashtags": [], 
   "urls": [
    {
     "url": "http://t.co/gt8O98eahy", 
     "indices": [
      95, 
      117
     ], 
     "expanded_url": "http://altpress.com/Preorder", 
     "display_url": "altpress.com/Preorder"
    }
   ], 
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492025270225100800/photo/1", 
     "display_url": "pic.twitter.com/3tT5FOVpjp", 
     "url": "http://t.co/3tT5FOVpjp", 
     "media_url_https": "https://pbs.twimg.com/media/BtQGXyqIMAA3ypk.jpg", 
     "id_str": "492025265095454720", 
     "sizes": {
      "large": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "small": {
       "h": 438, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      118, 
      140
     ], 
     "type": "photo", 
     "id": 492025265095454720, 
     "media_url": "http://pbs.twimg.com/media/BtQGXyqIMAA3ypk.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492025270225100800", 
  "retweet_count": 18662, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 19:15:40 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492025270225100800/photo/1", 
     "display_url": "pic.twitter.com/3tT5FOVpjp", 
     "url": "http://t.co/3tT5FOVpjp", 
     "media_url_https": "https://pbs.twimg.com/media/BtQGXyqIMAA3ypk.jpg", 
     "id_str": "492025265095454720", 
     "sizes": {
      "large": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "small": {
       "h": 438, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      118, 
      140
     ], 
     "type": "photo", 
     "id": 492025265095454720, 
     "media_url": "http://pbs.twimg.com/media/BtQGXyqIMAA3ypk.jpg"
    }, 
    {
     "expanded_url": "http://twitter.com/5SOS/status/492025270225100800/photo/1", 
     "display_url": "pic.twitter.com/3tT5FOVpjp", 
     "url": "http://t.co/3tT5FOVpjp", 
     "media_url_https": "https://pbs.twimg.com/media/BtQGXkSIcAAG6FZ.jpg", 
     "id_str": "492025261236711424", 
     "sizes": {
      "large": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "small": {
       "h": 438, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 675, 
       "resize": "fit", 
       "w": 524
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      118, 
      140
     ], 
     "type": "photo", 
     "id": 492025261236711424, 
     "media_url": "http://pbs.twimg.com/media/BtQGXkSIcAAG6FZ.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "http://t.co/WMOsm4bDyG\n\n^^", 
  "in_reply_to_status_id": null, 
  "id": 492024759501090816, 
  "favorite_count": 25901, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": [
    {
     "url": "http://t.co/WMOsm4bDyG", 
     "indices": [
      0, 
      22
     ], 
     "expanded_url": "http://open.soundrop.fm/s/5sos", 
     "display_url": "open.soundrop.fm/s/5sos"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492024759501090816", 
  "retweet_count": 11034, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "und", 
  "created_at": "Wed Jul 23 19:13:38 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "We're talking to you guys on this link if you wanna listen to the album and talk to us !:-)\n-Luke\n#http://open.soundrop.fm/s/5sos", 
  "in_reply_to_status_id": null, 
  "id": 492024578902740992, 
  "favorite_count": 31113, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492024578902740992", 
  "retweet_count": 12970, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 19:12:55 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "Doin some stuff today \u263a\ufe0fwe love you, how are you guys!? - http://t.co/NnBeHdQjU0", 
  "in_reply_to_status_id": null, 
  "id": 492013174615322624, 
  "favorite_count": 60962, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492013174615322624/photo/1", 
     "display_url": "pic.twitter.com/NnBeHdQjU0", 
     "url": "http://t.co/NnBeHdQjU0", 
     "media_url_https": "https://pbs.twimg.com/media/BtP7X9SCYAIiWbJ.jpg", 
     "id_str": "492013173319294978", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      58, 
      80
     ], 
     "type": "photo", 
     "id": 492013173319294978, 
     "media_url": "http://pbs.twimg.com/media/BtP7X9SCYAIiWbJ.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492013174615322624", 
  "retweet_count": 27910, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 18:27:36 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492013174615322624/photo/1", 
     "display_url": "pic.twitter.com/NnBeHdQjU0", 
     "url": "http://t.co/NnBeHdQjU0", 
     "media_url_https": "https://pbs.twimg.com/media/BtP7X9SCYAIiWbJ.jpg", 
     "id_str": "492013173319294978", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      58, 
      80
     ], 
     "type": "photo", 
     "id": 492013173319294978, 
     "media_url": "http://pbs.twimg.com/media/BtP7X9SCYAIiWbJ.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "Best thing to happen on earth http://t.co/2AspH0e74z", 
  "in_reply_to_status_id": null, 
  "id": 492006095896862721, 
  "favorite_count": 67459, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492006095896862721/photo/1", 
     "display_url": "pic.twitter.com/2AspH0e74z", 
     "url": "http://t.co/2AspH0e74z", 
     "media_url_https": "https://pbs.twimg.com/media/BtP071OCIAA2IQA.jpg", 
     "id_str": "492006093048913920", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      30, 
      52
     ], 
     "type": "photo", 
     "id": 492006093048913920, 
     "media_url": "http://pbs.twimg.com/media/BtP071OCIAA2IQA.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "492006095896862721", 
  "retweet_count": 36119, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 17:59:28 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/492006095896862721/photo/1", 
     "display_url": "pic.twitter.com/2AspH0e74z", 
     "url": "http://t.co/2AspH0e74z", 
     "media_url_https": "https://pbs.twimg.com/media/BtP071OCIAA2IQA.jpg", 
     "id_str": "492006093048913920", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      30, 
      52
     ], 
     "type": "photo", 
     "id": 492006093048913920, 
     "media_url": "http://pbs.twimg.com/media/BtP071OCIAA2IQA.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "GOOD MORNING! big day today! Come say hi if you know where we are. - caldawg", 
  "in_reply_to_status_id": null, 
  "id": 491998628870094848, 
  "favorite_count": 39780, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491998628870094848", 
  "retweet_count": 16463, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 17:29:48 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "Thanks to everyone that came & watched us yesterday, your all amazing ! Our album is out now if ya didn't know \ud83d\ude01\ud83d\ude01 https://t.co/o0kkGDfP6A", 
  "in_reply_to_status_id": null, 
  "id": 491979094788419584, 
  "favorite_count": 33130, 
  "source": "TweetDeck", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": [
    {
     "url": "https://t.co/o0kkGDfP6A", 
     "indices": [
      118, 
      141
     ], 
     "expanded_url": "https://cards.twitter.com/cards/18ce53vxrfa/1kwy", 
     "display_url": "cards.twitter.com/cards/18ce53vx\u2026"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491979094788419584", 
  "retweet_count": 13943, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 16:12:11 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Luke5SOS: Thanks for the candy lovely girl at airport, it tastes like America", 
  "in_reply_to_status_id": null, 
  "id": 491978915049902080, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 403245020, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "403245020", 
     "screen_name": "Luke5SOS", 
     "name": "Luke Hemmings"
    }
   ], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491978915049902080", 
  "retweet_count": 32881, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Thanks for the candy lovely girl at airport, it tastes like America", 
   "in_reply_to_status_id": null, 
   "id": 491770640446521344, 
   "favorite_count": 79156, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491770640446521344", 
   "retweet_count": 32881, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 403245020, 
    "id_str": "403245020"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 02:23:51 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 16:11:28 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Michael5SOS: Mammoth day \ud83d\udc18", 
  "in_reply_to_status_id": null, 
  "id": 491978860624244737, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 403246803, 
     "indices": [
      3, 
      15
     ], 
     "id_str": "403246803", 
     "screen_name": "Michael5SOS", 
     "name": "Michael Clifford"
    }
   ], 
   "hashtags": [], 
   "urls": []
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491978860624244737", 
  "retweet_count": 25558, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Mammoth day \ud83d\udc18", 
   "in_reply_to_status_id": null, 
   "id": 491782155307974656, 
   "favorite_count": 56351, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": []
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491782155307974656", 
   "retweet_count": 25558, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 403246803, 
    "id_str": "403246803"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "lang": "en", 
   "created_at": "Wed Jul 23 03:09:37 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "lang": "en", 
  "created_at": "Wed Jul 23 16:11:15 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Ashton5SOS: You guys are the bomb diggidy... I love ya http://t.co/RLp44Q5QJN", 
  "in_reply_to_status_id": null, 
  "id": 491978756454903808, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 439125710, 
     "indices": [
      3, 
      14
     ], 
     "id_str": "439125710", 
     "screen_name": "Ashton5SOS", 
     "name": "Ashton Irwin"
    }
   ], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "491626217263476736", 
     "expanded_url": "http://twitter.com/Ashton5SOS/status/491626217263476736/photo/1", 
     "display_url": "pic.twitter.com/RLp44Q5QJN", 
     "url": "http://t.co/RLp44Q5QJN", 
     "media_url_https": "https://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg", 
     "source_status_id": 491626217263476736, 
     "id_str": "491626216164564992", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      59, 
      81
     ], 
     "type": "photo", 
     "id": 491626216164564992, 
     "media_url": "http://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491978756454903808", 
  "retweet_count": 29333, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "You guys are the bomb diggidy... I love ya http://t.co/RLp44Q5QJN", 
   "in_reply_to_status_id": null, 
   "id": 491626217263476736, 
   "favorite_count": 69914, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/Ashton5SOS/status/491626217263476736/photo/1", 
      "display_url": "pic.twitter.com/RLp44Q5QJN", 
      "url": "http://t.co/RLp44Q5QJN", 
      "media_url_https": "https://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg", 
      "id_str": "491626216164564992", 
      "sizes": {
       "small": {
        "h": 453, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 768
       }, 
       "medium": {
        "h": 800, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       43, 
       65
      ], 
      "type": "photo", 
      "id": 491626216164564992, 
      "media_url": "http://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491626217263476736", 
   "retweet_count": 29333, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 439125710, 
    "id_str": "439125710"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": true, 
   "lang": "en", 
   "created_at": "Tue Jul 22 16:49:58 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/Ashton5SOS/status/491626217263476736/photo/1", 
      "display_url": "pic.twitter.com/RLp44Q5QJN", 
      "url": "http://t.co/RLp44Q5QJN", 
      "media_url_https": "https://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg", 
      "id_str": "491626216164564992", 
      "sizes": {
       "small": {
        "h": 453, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 1024, 
        "resize": "fit", 
        "w": 768
       }, 
       "medium": {
        "h": 800, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       43, 
       65
      ], 
      "type": "photo", 
      "id": 491626216164564992, 
      "media_url": "http://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 16:10:50 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491626217263476736", 
     "expanded_url": "http://twitter.com/Ashton5SOS/status/491626217263476736/photo/1", 
     "display_url": "pic.twitter.com/RLp44Q5QJN", 
     "url": "http://t.co/RLp44Q5QJN", 
     "media_url_https": "https://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg", 
     "source_status_id": 491626217263476736, 
     "id_str": "491626216164564992", 
     "sizes": {
      "small": {
       "h": 453, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 1024, 
       "resize": "fit", 
       "w": 768
      }, 
      "medium": {
       "h": 800, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      59, 
      81
     ], 
     "type": "photo", 
     "id": 491626216164564992, 
     "media_url": "http://pbs.twimg.com/media/BtKbcFjCIAAhA6M.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @SidleyAustralia: Look what's downloading! So excited to hear the rest of the album! #5SOSTHEALBUM #FinallyA5OSAlbum http://t.co/GNv04UN\u2026", 
  "in_reply_to_status_id": null, 
  "id": 491936516462370816, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 1350508945, 
     "indices": [
      3, 
      19
     ], 
     "id_str": "1350508945", 
     "screen_name": "SidleyAustralia", 
     "name": "\u263csyd kid\u263c"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      88, 
      101
     ], 
     "text": "5SOSTHEALBUM"
    }, 
    {
     "indices": [
      102, 
      119
     ], 
     "text": "FinallyA5OSAlbum"
    }
   ], 
   "urls": [], 
   "media": [
    {
     "source_status_id_str": "491426011716673536", 
     "expanded_url": "http://twitter.com/SidleyAustralia/status/491426011716673536/photo/1", 
     "display_url": "pic.twitter.com/GNv04UN6Vz", 
     "url": "http://t.co/GNv04UN6Vz", 
     "media_url_https": "https://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg", 
     "source_status_id": 491426011716673536, 
     "id_str": "491426006318579712", 
     "sizes": {
      "small": {
       "h": 510, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 960, 
       "resize": "fit", 
       "w": 640
      }, 
      "medium": {
       "h": 900, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491426006318579712, 
     "media_url": "http://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491936516462370816", 
  "retweet_count": 1976, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "Look what's downloading! So excited to hear the rest of the album! #5SOSTHEALBUM #FinallyA5OSAlbum http://t.co/GNv04UN6Vz", 
   "in_reply_to_status_id": null, 
   "id": 491426011716673536, 
   "favorite_count": 9706, 
   "source": "Twitter for iPhone", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [], 
    "hashtags": [
     {
      "indices": [
       67, 
       80
      ], 
      "text": "5SOSTHEALBUM"
     }, 
     {
      "indices": [
       81, 
       98
      ], 
      "text": "FinallyA5OSAlbum"
     }
    ], 
    "urls": [], 
    "media": [
     {
      "expanded_url": "http://twitter.com/SidleyAustralia/status/491426011716673536/photo/1", 
      "display_url": "pic.twitter.com/GNv04UN6Vz", 
      "url": "http://t.co/GNv04UN6Vz", 
      "media_url_https": "https://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg", 
      "id_str": "491426006318579712", 
      "sizes": {
       "small": {
        "h": 510, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 960, 
        "resize": "fit", 
        "w": 640
       }, 
       "medium": {
        "h": 900, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       99, 
       121
      ], 
      "type": "photo", 
      "id": 491426006318579712, 
      "media_url": "http://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491426011716673536", 
   "retweet_count": 1976, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 1350508945, 
    "id_str": "1350508945"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Tue Jul 22 03:34:26 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/SidleyAustralia/status/491426011716673536/photo/1", 
      "display_url": "pic.twitter.com/GNv04UN6Vz", 
      "url": "http://t.co/GNv04UN6Vz", 
      "media_url_https": "https://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg", 
      "id_str": "491426006318579712", 
      "sizes": {
       "small": {
        "h": 510, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 960, 
        "resize": "fit", 
        "w": 640
       }, 
       "medium": {
        "h": 900, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       99, 
       121
      ], 
      "type": "photo", 
      "id": 491426006318579712, 
      "media_url": "http://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 13:22:59 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491426011716673536", 
     "expanded_url": "http://twitter.com/SidleyAustralia/status/491426011716673536/photo/1", 
     "display_url": "pic.twitter.com/GNv04UN6Vz", 
     "url": "http://t.co/GNv04UN6Vz", 
     "media_url_https": "https://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg", 
     "source_status_id": 491426011716673536, 
     "id_str": "491426006318579712", 
     "sizes": {
      "small": {
       "h": 510, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 960, 
       "resize": "fit", 
       "w": 640
      }, 
      "medium": {
       "h": 900, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491426006318579712, 
     "media_url": "http://pbs.twimg.com/media/BtHlWVwCAAAvMYu.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @Target: .@5SOS debut album is finally here! Get yours today, w/4 extra songs #OnlyAtTarget. http://t.co/on6jyopbra #More5SOS http://t.c\u2026", 
  "in_reply_to_status_id": null, 
  "id": 491935625663508480, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 89084561, 
     "indices": [
      3, 
      10
     ], 
     "id_str": "89084561", 
     "screen_name": "Target", 
     "name": "Target"
    }, 
    {
     "id": 264107729, 
     "indices": [
      13, 
      18
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [
    {
     "indices": [
      81, 
      94
     ], 
     "text": "OnlyAtTarget"
    }, 
    {
     "indices": [
      119, 
      128
     ], 
     "text": "More5SOS"
    }
   ], 
   "urls": [
    {
     "url": "http://t.co/on6jyopbra", 
     "indices": [
      96, 
      118
     ], 
     "expanded_url": "http://tgt.biz/1k8wZ2s", 
     "display_url": "tgt.biz/1k8wZ2s"
    }
   ], 
   "media": [
    {
     "source_status_id_str": "491594800827613185", 
     "expanded_url": "http://twitter.com/Target/status/491594800827613185/photo/1", 
     "display_url": "pic.twitter.com/st5RLCyZ4O", 
     "url": "http://t.co/st5RLCyZ4O", 
     "media_url_https": "https://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png", 
     "source_status_id": 491594800827613185, 
     "id_str": "491594800378806272", 
     "sizes": {
      "small": {
       "h": 218, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 655, 
       "resize": "fit", 
       "w": 1024
      }, 
      "medium": {
       "h": 384, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491594800378806272, 
     "media_url": "http://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491935625663508480", 
  "retweet_count": 16734, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": ".@5SOS debut album is finally here! Get yours today, w/4 extra songs #OnlyAtTarget. http://t.co/on6jyopbra #More5SOS http://t.co/st5RLCyZ4O", 
   "in_reply_to_status_id": null, 
   "id": 491594800827613185, 
   "favorite_count": 41153, 
   "source": "Spredfast", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 264107729, 
      "indices": [
       1, 
       6
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [
     {
      "indices": [
       69, 
       82
      ], 
      "text": "OnlyAtTarget"
     }, 
     {
      "indices": [
       107, 
       116
      ], 
      "text": "More5SOS"
     }
    ], 
    "urls": [
     {
      "url": "http://t.co/on6jyopbra", 
      "indices": [
       84, 
       106
      ], 
      "expanded_url": "http://tgt.biz/1k8wZ2s", 
      "display_url": "tgt.biz/1k8wZ2s"
     }
    ], 
    "media": [
     {
      "expanded_url": "http://twitter.com/Target/status/491594800827613185/photo/1", 
      "display_url": "pic.twitter.com/st5RLCyZ4O", 
      "url": "http://t.co/st5RLCyZ4O", 
      "media_url_https": "https://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png", 
      "id_str": "491594800378806272", 
      "sizes": {
       "small": {
        "h": 218, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 655, 
        "resize": "fit", 
        "w": 1024
       }, 
       "medium": {
        "h": 384, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       117, 
       139
      ], 
      "type": "photo", 
      "id": 491594800378806272, 
      "media_url": "http://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491594800827613185", 
   "retweet_count": 16734, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 89084561, 
    "id_str": "89084561"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Tue Jul 22 14:45:08 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/Target/status/491594800827613185/photo/1", 
      "display_url": "pic.twitter.com/st5RLCyZ4O", 
      "url": "http://t.co/st5RLCyZ4O", 
      "media_url_https": "https://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png", 
      "id_str": "491594800378806272", 
      "sizes": {
       "small": {
        "h": 218, 
        "resize": "fit", 
        "w": 340
       }, 
       "large": {
        "h": 655, 
        "resize": "fit", 
        "w": 1024
       }, 
       "medium": {
        "h": 384, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       117, 
       139
      ], 
      "type": "photo", 
      "id": 491594800378806272, 
      "media_url": "http://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 13:19:27 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491594800827613185", 
     "expanded_url": "http://twitter.com/Target/status/491594800827613185/photo/1", 
     "display_url": "pic.twitter.com/st5RLCyZ4O", 
     "url": "http://t.co/st5RLCyZ4O", 
     "media_url_https": "https://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png", 
     "source_status_id": 491594800827613185, 
     "id_str": "491594800378806272", 
     "sizes": {
      "small": {
       "h": 218, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 655, 
       "resize": "fit", 
       "w": 1024
      }, 
      "medium": {
       "h": 384, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491594800378806272, 
     "media_url": "http://pbs.twimg.com/media/BtJ-3coCAAA2Crl.png"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "RT @soundrop: We'll be chatting with Aussie pop sensations @5SOS this Wednesday! See you there! http://t.co/1MUIIS5IW8 http://t.co/31oQkA8c\u2026", 
  "in_reply_to_status_id": null, 
  "id": 491934145548132353, 
  "favorite_count": 0, 
  "source": "Twitter Web Client", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [
    {
     "id": 244446710, 
     "indices": [
      3, 
      12
     ], 
     "id_str": "244446710", 
     "screen_name": "soundrop", 
     "name": "Soundrop"
    }, 
    {
     "id": 264107729, 
     "indices": [
      59, 
      64
     ], 
     "id_str": "264107729", 
     "screen_name": "5SOS", 
     "name": "5 Seconds of Summer"
    }
   ], 
   "hashtags": [], 
   "urls": [
    {
     "url": "http://t.co/1MUIIS5IW8", 
     "indices": [
      96, 
      118
     ], 
     "expanded_url": "http://open.soundrop.fm/s/5sos", 
     "display_url": "open.soundrop.fm/s/5sos"
    }
   ], 
   "media": [
    {
     "source_status_id_str": "491276401879056384", 
     "expanded_url": "http://twitter.com/soundrop/status/491276401879056384/photo/1", 
     "display_url": "pic.twitter.com/31oQkA8cPo", 
     "url": "http://t.co/31oQkA8cPo", 
     "media_url_https": "https://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg", 
     "source_status_id": 491276401879056384, 
     "id_str": "491276399161143296", 
     "sizes": {
      "large": {
       "h": 379, 
       "resize": "fit", 
       "w": 1024
      }, 
      "small": {
       "h": 126, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 222, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491276399161143296, 
     "media_url": "http://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491934145548132353", 
  "retweet_count": 3565, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "retweeted_status": {
   "contributors": null, 
   "truncated": false, 
   "text": "We'll be chatting with Aussie pop sensations @5SOS this Wednesday! See you there! http://t.co/1MUIIS5IW8 http://t.co/31oQkA8cPo", 
   "in_reply_to_status_id": null, 
   "id": 491276401879056384, 
   "favorite_count": 12168, 
   "source": "Twitter Web Client", 
   "retweeted": false, 
   "coordinates": null, 
   "entities": {
    "symbols": [], 
    "user_mentions": [
     {
      "id": 264107729, 
      "indices": [
       45, 
       50
      ], 
      "id_str": "264107729", 
      "screen_name": "5SOS", 
      "name": "5 Seconds of Summer"
     }
    ], 
    "hashtags": [], 
    "urls": [
     {
      "url": "http://t.co/1MUIIS5IW8", 
      "indices": [
       82, 
       104
      ], 
      "expanded_url": "http://open.soundrop.fm/s/5sos", 
      "display_url": "open.soundrop.fm/s/5sos"
     }
    ], 
    "media": [
     {
      "expanded_url": "http://twitter.com/soundrop/status/491276401879056384/photo/1", 
      "display_url": "pic.twitter.com/31oQkA8cPo", 
      "url": "http://t.co/31oQkA8cPo", 
      "media_url_https": "https://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg", 
      "id_str": "491276399161143296", 
      "sizes": {
       "large": {
        "h": 379, 
        "resize": "fit", 
        "w": 1024
       }, 
       "small": {
        "h": 126, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 222, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       105, 
       127
      ], 
      "type": "photo", 
      "id": 491276399161143296, 
      "media_url": "http://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg"
     }
    ]
   }, 
   "in_reply_to_screen_name": null, 
   "id_str": "491276401879056384", 
   "retweet_count": 3565, 
   "in_reply_to_user_id": null, 
   "favorited": false, 
   "user": {
    "id": 244446710, 
    "id_str": "244446710"
   }, 
   "geo": null, 
   "in_reply_to_user_id_str": null, 
   "possibly_sensitive": false, 
   "lang": "en", 
   "created_at": "Mon Jul 21 17:39:56 +0000 2014", 
   "in_reply_to_status_id_str": null, 
   "place": null, 
   "extended_entities": {
    "media": [
     {
      "expanded_url": "http://twitter.com/soundrop/status/491276401879056384/photo/1", 
      "display_url": "pic.twitter.com/31oQkA8cPo", 
      "url": "http://t.co/31oQkA8cPo", 
      "media_url_https": "https://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg", 
      "id_str": "491276399161143296", 
      "sizes": {
       "large": {
        "h": 379, 
        "resize": "fit", 
        "w": 1024
       }, 
       "small": {
        "h": 126, 
        "resize": "fit", 
        "w": 340
       }, 
       "medium": {
        "h": 222, 
        "resize": "fit", 
        "w": 600
       }, 
       "thumb": {
        "h": 150, 
        "resize": "crop", 
        "w": 150
       }
      }, 
      "indices": [
       105, 
       127
      ], 
      "type": "photo", 
      "id": 491276399161143296, 
      "media_url": "http://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg"
     }
    ]
   }
  }, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "en", 
  "created_at": "Wed Jul 23 13:13:34 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "source_status_id_str": "491276401879056384", 
     "expanded_url": "http://twitter.com/soundrop/status/491276401879056384/photo/1", 
     "display_url": "pic.twitter.com/31oQkA8cPo", 
     "url": "http://t.co/31oQkA8cPo", 
     "media_url_https": "https://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg", 
     "source_status_id": 491276401879056384, 
     "id_str": "491276399161143296", 
     "sizes": {
      "large": {
       "h": 379, 
       "resize": "fit", 
       "w": 1024
      }, 
      "small": {
       "h": 126, 
       "resize": "fit", 
       "w": 340
      }, 
      "medium": {
       "h": 222, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      139, 
      140
     ], 
     "type": "photo", 
     "id": 491276399161143296, 
     "media_url": "http://pbs.twimg.com/media/BtFdSDqIcAAeIvS.jpg"
    }
   ]
  }
 }, 
 {
  "contributors": null, 
  "truncated": false, 
  "text": "Pernk jermp http://t.co/Mmelok18Qe", 
  "in_reply_to_status_id": null, 
  "id": 491804515985682432, 
  "favorite_count": 53106, 
  "source": "Twitter for iPhone", 
  "retweeted": false, 
  "coordinates": null, 
  "entities": {
   "symbols": [], 
   "user_mentions": [], 
   "hashtags": [], 
   "urls": [], 
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/491804515985682432/photo/1", 
     "display_url": "pic.twitter.com/Mmelok18Qe", 
     "url": "http://t.co/Mmelok18Qe", 
     "media_url_https": "https://pbs.twimg.com/media/BtM9mdwCEAAYhRD.jpg", 
     "id_str": "491804515343929344", 
     "sizes": {
      "small": {
       "h": 340, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "medium": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      12, 
      34
     ], 
     "type": "photo", 
     "id": 491804515343929344, 
     "media_url": "http://pbs.twimg.com/media/BtM9mdwCEAAYhRD.jpg"
    }
   ]
  }, 
  "in_reply_to_screen_name": null, 
  "id_str": "491804515985682432", 
  "retweet_count": 25839, 
  "in_reply_to_user_id": null, 
  "favorited": false, 
  "user": {
   "id": 264107729, 
   "id_str": "264107729"
  }, 
  "geo": null, 
  "in_reply_to_user_id_str": null, 
  "possibly_sensitive": false, 
  "lang": "hr", 
  "created_at": "Wed Jul 23 04:38:28 +0000 2014", 
  "in_reply_to_status_id_str": null, 
  "place": null, 
  "extended_entities": {
   "media": [
    {
     "expanded_url": "http://twitter.com/5SOS/status/491804515985682432/photo/1", 
     "display_url": "pic.twitter.com/Mmelok18Qe", 
     "url": "http://t.co/Mmelok18Qe", 
     "media_url_https": "https://pbs.twimg.com/media/BtM9mdwCEAAYhRD.jpg", 
     "id_str": "491804515343929344", 
     "sizes": {
      "small": {
       "h": 340, 
       "resize": "fit", 
       "w": 340
      }, 
      "large": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "medium": {
       "h": 600, 
       "resize": "fit", 
       "w": 600
      }, 
      "thumb": {
       "h": 150, 
       "resize": "crop", 
       "w": 150
      }
     }, 
     "indices": [
      12, 
      34
     ], 
     "type": "photo", 
     "id": 491804515343929344, 
     "media_url": "http://pbs.twimg.com/media/BtM9mdwCEAAYhRD.jpg"
    }
   ]
  }
 }
]


评论关闭