Is there any API that gives me the page rank of a website programmatically?
相关问题
- Google places autocomplete suggestion without coun
- Karate API Testing - Access variable value across
- How to verify laravel passport api token in node /
- Converting byte array output into Blob corrupts fi
- How to handle “App is temporarily blocked from log
相关文章
- 我用scrapy写了一个蛮简单的爬虫怎么封装成一个api啊
- 后端给前端的API接口是怎么用代码写的
- Convert C# Object to Json Object
- Android camera2 API get focus distance in AF mode
- Getting all listing images from an Etsy shop
- Is there an API to get statictics on Google Play d
- How to search specific user's tracks by tag wi
- Django REST Framework - OAuth2 Consumer API from e
This is really easy to use http://www.fourmilab.ch/webtools/PageRank/
Sorry to dig up an old question, but I had this same problem, and found a way to solve it.
The "&ch=" part is a checksum of the domain/page you are trying to find the "fake PR" for.
Use the code from here: http://www.codeproject.com/Articles/20038/Request-Google-s-Page-rank-Programmatically
Replace the original URL with the URL provided by Franz (http://toolbarqueries.google.at/tbr?features=Rank&sourceid=navclient-ff&client=navclient-auto-ff&googleip=O;173.194.35.104;539&iqrn=O6uB&querytime=5X&orig=0gjuj&swwk=-1&ch=805513e7f&q=info:http://stackoverflow.com/).
if you mean with pagerank the green bar on top of the google toolbar, just make a get request to
http://toolbarqueries.google.at/tbr?features=Rank&sourceid=navclient-ff&client=navclient-auto-ff&googleip=O;173.194.35.104;539&iqrn=O6uB&querytime=5X&orig=0gjuj&swwk=-1&ch=805513e7f&q=info:https://stackoverflow.com/
the last figure is the google toolbar pagerank figure (also known as green bar pagerank)
but it is not the real google pagerank (which isn't a figure beteween 0 and 10) and it is not even an estimate of the value of your page, it is just a figure google communicates to webmasters to turn on the "submit data to us" option of the toolbar. my recommendation is: just ignore it.