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.

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

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵