使用CURL解析php中的DOM

发布于 2024-12-20 04:53:27 字数 528 浏览 1 评论 0原文

当我在此页面上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

安穩 2024-12-27 04:53:28

它可能是用 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.

仙气飘飘 2024-12-27 04:53:28

您最好使用 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/

明天过后 2024-12-27 04:53:28

可能是JS插入的DOM节点。请参阅此卷曲常见问题解答。 Curl 不支持 JavaScript。

It might be a DOM node inserted by JS. See this curl FAQ. Curl doesn't support JavaScript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文