My space is returning and improper signature from the makerequest call. There is definitely issue with encoding of the url.
When using the Oauth Tool myspace gives me the same signature and basestring that I expect.
However when using makerequest myspace is delivering an invalid signature because it is using and invalid basestring.
My url request was: http://www.myserver.com/login!view.jsp when using this url myspace would return the wrong signature.
However when removing the ! and using a new url address http://www.myserver.com/loginview.jsp it works.
MySpace returned the signature as if the url was encoded as : http%3A%2F%2Fqa.flashwidgetz.com%2Fmyspace%2Flogin!view.jsp
insted of as
http%3A%2F%2Fqa.flashwidgetz.com%2Fmyspace%2Flogin%21view.jsp
The ! was not converted into %21.