PlusOne Scraper Home
Generate an RSS feed of PlusOnes published to your Google Profile
Status: Beta
Brought to you by:
nikonratm
Upload the plusonescraper folder (or the two files inside, in which case index.php will probably require renaming).
Make sure your Google Profile is setup to show your +1s.
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>