Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $slugs = json_decode(file_get_contents("http://api.twitter.com/1/users/suggestions.json"), TRUE);
- foreach($slugs as $group){
- $slug = $group['slug'];
- $users = json_decode(file_get_contents("http://api.twitter.com/1/users/suggestions/$slug.json"), TRUE);
- print_r($users);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment