8

How can I retrieve pagerank of any page indexed by google? Has Google any API or page for this?

tshepang
  • 12,111
  • 21
  • 91
  • 136
oneat
  • 10,778
  • 16
  • 52
  • 70
  • I forgot to add that I want to make it programmable. – oneat Mar 21 '10 at 21:07
  • superuser is for computer hardware and software related questions only. Websites are considered off topic. Please read the FAQ (http://superuser.com/faq). Programming questions (if this was one) would be asked on stackoverflow (http://stackoverflow.com). – Josh K Mar 23 '10 at 03:10
  • please don't post this question again at Stack Overflow; it will be migrated there and your SO account will take over ownership automatically. – quack quixote Mar 23 '10 at 05:42

2 Answers2

3

You can get the PageRank by using an HTTP request:

http://toolbarqueries.google.com/search?client=navclient-auto&hl=en&ch=61470319184&ie=UTF-8&oe=UTF-8&features=Rank&q=info:http://forums.digitalpoint.com/showthread.php%3Ft%3D164713

Just figure out what "ch" is used for and you should be good to go.

You could also try this site.

tshepang
  • 12,111
  • 21
  • 91
  • 136
ta.speot.is
  • 26,914
  • 8
  • 68
  • 96
1

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.

Stephan
  • 41,764
  • 65
  • 238
  • 329