Instructions

Michael
There is a newer version of this page. You can find it here.
  1. Upload the plusonescraper folder (or the two files inside, in which case index.php will probably require renaming).

  2. Make sure your Google Profile is setup to show your +1s.

  3. Use the scraper by passing in your username to the 'u' parameter. For example: http://yoursite.com/plusonescraper/?u=user.name

(OPTIONAL) To use prettier URLs like http://yoursite.com/plusonescraper/user.name , create an .htaccess file with something like the following:

\<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^plusonescraper/index.php - [L]
RewriteRule ^plusonescraper/(.+)$ /plusonescraper/index.php?u=$1 [L]
\</IfModule>