Quote:
P.S. I'd like to give my personal apology to Travis641 for my attitude. It was unnecessary and uncalled for.
|
Thank you, I said a lot of things I shouldn't have as well, and I apologize as well. :up:
I've been trying to figure out how to get Playstation Network information for about a month or so, because I wanted to include it in my gamercard generator. I believe it can be accomplished now, albeit it seems to be far more difficult than the Xbox leaderboard. There are several APIs you can download that allow you to pull PS3 information, such as
here, however I do not have a Windows server to run ASPX code.
As for the fix with spaces in names on gxboxlive, I've just replaced the code in gxboxlive.php on line 266:
PHP Code:
$player['url_gamertag'] = urlencode($player['gamertag']);
with
PHP Code:
$player['url_gamertag'] = str_replace(" ","%20",$player['gamertag']);
It seems to work for me.