获取PageRank
如何检索由 google 索引的任何页面的 pagerank? Google 有这方面的 API 或页面吗?
How can I retrieve pagerank of any page indexed by google? Has Google any API or page for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 HTTP 请求获取 PageRank:
只需弄清楚“ch”的用途即可。
您还可以尝试此网站。
You can get the PageRank by using an HTTP request:
Just figure out what "ch" is used for and you should be good to go.
You could also try this site.
查看 MkYong 上的这篇文章如何用纯 Java 获取 PageRank。
它提供了用于计算
ch
值的 Bob Jenkins 哈希算法的实现。Check this article from MkYong on how to get PageRank in plain Java.
It gives an implementation of the Bob Jenkins hashing algorithm used to calculate the
ch
value.