In response to: http://www.dataportability.org/graphsync/
Here is a simple MySpace spider I created a while ago. It can collect the following:
Works with Normal and Band profiles.
All the stuff is in class.myspace.php
Here's an example:
<?php
include("class.myspace.php");
$spider = new myspace();
$myspace_id = "dtbaker"; // or numerical id 49537019
// the below methods return simple arrays of data
$details = $spider -> get_details($myspace_id);
$friends = $spider -> get_friends($myspace_id);
$comments = $spider -> get_comments($myspace_id);
?>
Version 1.
Didn't get time tonight, next few days I will look at writing a wrapper around the MySpace class to convert it into pretty hCard (update: done here) and XFN formats
Will also try and find the newer version I have around somewhere - it scrapes MySpace profile interests = APML
And yea: MySpace may ban you if they see you're scraping, heh