Hey Joel,
Sadly problem still exists, I am able to get a request token and was able to go through authentication process but when I request for the access token I get the ff error:
401 Unauthorized oauth_problem=signature_invalid
request made using (Net::OAuth):
[debug] request: $VAR1 = \bless( {
'version' => '1.0',
'request_method' => 'GET',
'verifier' => undef,
'consumer_key' => '1d41e78f1bd14c82a2819739c2b036e0',
'request_url' => 'http://api.myspace.com/access_token',
'token_secret' => '',
'signature_method' => 'HMAC-SHA1',
'timestamp' => 1279975796,
'nonce' => 'sxasexyzmcghqsotetv',
'consumer_secret' => '7b9f0ea19dd04f4ab9d598d45923740a1a806c1f8fad4642b35c31e62aa11a5f',
'extra_params' => {},
'oauth_version' => '1.0a',
'token' =>
'pleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%2FHwSDrppR6AYzRHeshFbF%2BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%2FIGgSbWKURtCApgj'
}, 'Net::OAuth::AccessTokenRequest' );
request URL generated:
http://api.myspace.com/access_token?oauth_consumer_key=1d41e78f1bd14c82a2819739c2b036e0&oauth_nonce=sxasexyzmcghqsotetv&oauth_signature=NoFQZetqaXBUd1%2FYy4JkR%2FrjnxA%3D&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1279975796&oauth_token=pleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%252FHwSDrppR6AYzRHeshFbF%252BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%252FIGgSbWKURtCApgj&oauth_version=1.0
interesting to know that when I use the MySpace OAuth tool, I get the same URL, which means what I'm generating must be correct (or the oauth tool is faulty).
Parameters on OAuth tool:
server : http://api.myspace.com
resource url : /access_token
request method : GET
consumer key : 1d41e78f1bd14c82a2819739c2b036e0
consumer secret : 7b9f0ea19dd04f4ab9d598d45923740a1a806c1f8fad4642b35c31e62aa11a5f
oauth token : pleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%2FHwSDrppR6AYzRHeshFbF%2BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%2FIGgSbWKURtCApgj
time stamp : 1279975796
oauth nonce : sxasexyzmcghqsotetv
signature method: HMAC-SHA1
version : 1.0
auth mode : authorization header
query options : generate uri only
Results
request format: URI representation of the request:
http://api.myspace.com/access_token?oauth_consumer_key=1d41e78f1bd14c82a2819739c2b036e0&oauth_nonce=sxasexyzmcghqsotetv&oauth_signature=NoFQZetqaXBUd1%2FYy4JkR%2FrjnxA%3D&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1279975796&oauth_token=pleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%252FHwSDrppR6AYzRHeshFbF%252BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%252FIGgSbWKURtCApgj&oauth_version=1.0
response body:
1.RequestURI=
http://api.myspace.com/access_token?oauth_consumer_key=1d41e78f1bd14c82a2819739c2b036e0&oauth_nonce=sxasexyzmcghqsotetv&oauth_signature=NoFQZetqaXBUd1/Yy4JkR/rjnxA=&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1279975796&oauth_token=pleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%252FHwSDrppR6AYzRHeshFbF%252BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%252FIGgSbWKURtCApgj&oauth_version=1.0
2.BaseString=
GET&http%3A%2F%2Fapi.myspace.com%2Faccess_token&oauth_consumer_key%3D1d41e78f1bd14c82a2819739c2b036e0%26oauth_nonce%3Dsxasexyzmcghqsotetv%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1279975796%26oauth_token%3DpleZzfBmWa1shKbbWxZ6DhD9mlX36jPm3a%25252FHwSDrppR6AYzRHeshFbF%25252BCK5Nx088JwWCO0uWHvVue7ZkG8tmgov8RqmE3joKOYsbAaEc79punQO3%25252FIGgSbWKURtCApgj%26oauth_version%3D1.0
3.Signature=
NoFQZetqaXBUd1/Yy4JkR/rjnxA=
screen shot attached.

additional notes: this app is still unpublished
Badly need your help, thanks!