使用CURL解析php中的DOM
当我在此页面上使用 Firebug 或 chrome 检查器 http://www.facebook.com/GaryFromCooper?sk =wall(右键单击检查元素)我可以看到一个名为“link_data”的隐藏输入。
但是当我用 php 卷曲它并读取 HTML 文件时,没有隐藏的输入......
所以我猜这可能在 DOM 中。
但是在我的curl请求之后我找不到任何方法来读取DOM,我尝试了DOM Php函数,但这不起作用......
有人可以帮助我吗?
我只想从 http://www.facebook.com/GaryFromCooper 检索“link_data”值?sk=wall 页面...使用curl
感谢您的帮助
When i use Firebug or chrome inspector on this page http://www.facebook.com/GaryFromCooper?sk=wall (right click inspect element) i could see an hidden input named "link_data".
But when i curl it with php and read the HTML file there is no hidden input...
So i guess this might be in the DOM.
But i couldn't found any way to read the DOM after my curl request, i tried DOM Php function but this doesn't work...
Can someone help me ?
I just want to retrieve the "link_data" value from the http://www.facebook.com/GaryFromCooper?sk=wall page...using curl
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它可能是用 JavaScript 插入的。 cURL 只是一个传输数据的工具,而不是执行 JavaScript :P
考虑到这涉及 Facebook,可能有一个很好的理由说明为什么你不能只是“抓取”该值。
It's probably inserted with JavaScript. cURL is just a tool for transfering data, not executing JavaScript :P
Considering this involves Facebook, there's probably a really good reason why you can't just 'scrape' that value.
您最好使用 Facebook API 来获取您需要的数据,如果 Facebook 部分发生任何变化,您不会受到影响。
http://developers.facebook.com/
Your better of using the Facebook API to get the data that you need, if anything changes from Facebooks part you wont be affected.
http://developers.facebook.com/
可能是JS插入的DOM节点。请参阅此卷曲常见问题解答。 Curl 不支持 JavaScript。
It might be a DOM node inserted by JS. See this curl FAQ. Curl doesn't support JavaScript.