I ran your info through my code and got the following:
BaseString:
GET&http%3A%2F%2Fapi.msappspace.com%2Fv1%2Fusers%2F30344243.xml&oauth_consumer_key%3Dhttp%253A%252F%252Fwww.myspace.com%252F329303884%26oauth_nonce%3D0e53f0eb-68dc-44ce-b184-377846bb9519%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1202493637%26oauth_token%3D%26oauth_version%3D1.0
Which matches your base string exactly!
URI:
http://api.msappspace.com/v1/users/30344243.xml?oauth_nonce=0e53f0eb-68dc-44ce-b184-377846bb9519&oauth_timestamp=1202493637&oauth_consumer_key=http%3A%2F%2Fwww.myspace.com%2F329303884&oauth_signature_method=HMAC-SHA1&oauth_version=1.0&oauth_token=&oauth_signature=87VYQDuLUvX2D%2BP1yZJy%2F%2BVmVlE%3D
The nonce field value is different than yours (which would cause the signature to be different), you seem to have an extra '3D' right after the equal sign in the nonce data (which could point to a url encoding problem, either at the key=value level or when you are url encoding the entire parameter string).
webphreak:Rajiv can you provide the code for the OAuth Testing Tool.. it is written in .NET correct? That example would help me alot if I could see the code of how it's generating everything.
I have suggested some changes to the OAuth Tool which would make life a bit easier for developers (without having to grope thru myspace code), posted here: http://developer.myspace.com/Community/forums/t/212.aspx
Jonathan