I'm trying to build a REST request for friends using some of the optional parameters for filtering the results. For some reason it seems that the list=xxx needs to be placed at the beginning of the query string and the rest placed at the end. Is there some logic to this? Here's an example generated using the OAuth tool:
http://api.myspace.com/v1/users/175340702/friends.xml?list=online&oauth_consumer_key=http%3A%2F%2Fwww.myspace.com%2Ftempusdictum&oauth_nonce=633433851682951565&oauth_signature=ubIysB4SbkX48yxPrtLS%2BCTrNFY%3D&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1207788368&oauth_token=&oauth_version=1.0&page=1&page_size=10&show=status%7Cmood
Trying to put list=xxx at the end of the query string (or the rest in the beginning) causes an "invalid digital signtature" error. This seems kind of arbitrary and makes dynamically formating the request more complex. Guess maybe everything but list=xxx is post processing, it's just making the process I have in place break.
~Brock