|
hey, i needed some code to get the top 8 friends for something i was doing.... ended up just grabbing them from the users homepage
check out the code....
$url = "http://home.myspace.com/index.cfm?fuseaction=user";
dbg (" Getting top 8 friends for $sender...\n");
$res=$myspace->get_page( $url );
$offset = index($res->content,"My Friend Space");
$content = substr($res->content,$offset) ;
my @top8list = $myspace->get_friends_on_page( $content );
dbg (" Got top 8 friends\n");
it also works with people who have modified their 'top friends' and changed theyre option to have top 4, 8, 12, or 16..... it works with all 4 options, just grabs all your 'top friends' and sticks them in an array.
i still have no clue how to CHANGE the top friends tho... heh, havent tried yet :P
|