douzhang6176 2016-01-07 22:45
浏览 50
已采纳

JSON响应与同名对象 - Instagram评论

I have been building a test app that gathers pictures and certain pieces of user information from Instagram (only using PHP). I am not using the official API, but instead parsing the JSON response that I get from the url.

I'm trying to gather comments for a certain post. The issue is that when there's more than one comment, I can see the text for each comment, but the object name in the response is the same (it repeats for every comment): {text}.

Here's an abbreviated example response:

{"text":"I think this is funded by my company","created_at"...,"user":{"username"...}, blah blah blah},

{"text":"Very cool","created_at"...,"user":{"username"...blah blah blah

As you can see, for each comment made, there is a "text" object that I need to grab.

Here is my function (shortened) that parses the JSON and gets the comment text:

function scrape_insta_user_post($postid) {

  $insta_source = file_get_contents('https://www.instagram.com/p/'.$postid.'/');
  $shards = explode('window._sharedData = ', $insta_source);
  $insta_json = explode(';</script>', $shards[1]); 
  $insta_array = json_decode($insta_json[0], TRUE);

  global $the_pic_comments;

  $the_pic_comments = $insta_array['entry_data']['PostPage'][0]['media']['comments']['nodes'][0]['text'];

}

I have another function that I use to display $the_pic_comments by simply echoing the results.

echo $the_pic_comments;

In cases where there is more than one {text} object, how would I go about displaying each comment? I'm assuming some kind of foreach() loop might work, but I can't get the foreach() to work with my json_decode() function.

This currently works, but only displays one comment, and everything else is ignored.

Can you help me create a loop that will get each comment from the JSON response?

Thanks!

  • 写回答

1条回答 默认 最新

  • dongyejun1983 2016-01-07 23:11
    关注

    Judging from your code alone, it seems that it should be:

    foreach ($insta_array['entry_data']['PostPage'][0]['media']['comments']['nodes'] as $comment) {
        echo $comment['text']; // Or add to array, eg. $comments[] = $comment['text'];
    }
    

    Note that since you are not using official API, your mechanism may break any time without notice shall Instagram change anything in their code.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效