Perusing the Instagram API I see it\'s pretty straightforward to search for photos by tag OR by username. However, I can\'t seem to find anything on searching by both. Is it pos
Wrote the code for you in php:
$api = file_get_contents("https://api.instagram.com/v1/tags/YOURTAG/media/recent?access_token=YOURACCESSTOKEN"); $json = json_decode($api,true); foreach($json['data'] as $data){ if($data['user']['username']=="YOURSPECIFICUSERNAME"){ //action } }
Enjoy : )