我尝试从instagram中检索一些公开的个人资料数据而不使用API。我已使用file_get_contents
并提取_sharedData
。但是这种方法极慢地降低了性能(加载5秒),因此对于生产来说这是无意义的。
我在一个stackoverflow question中看到,他们致电http://instagram.com/web/search/topsearch/?query=user_id以至少访问了多个粉丝。但没有进一步的细节。
是否有任何关于此网页搜索的文档或使用instagrams网页搜索访问公共资料数据的解决方案?我至少需要媒体,粉丝和随后的计数。
答案 0 :(得分:4)
您可以将?__a=1
添加到网址并仅获取json:
https://www.instagram.com/facebook/?__a=1
它包含您提及的公开个人资料数据:
user:
follows:
count
followed_by:
count
media:
count
我花了大约280毫秒。