I'm getting a 401 unauthorized response when trying to post a user status update in c#. I've tried a few different OAuth libraries, but none are working with the call to user_status.xml (They all work fine with the other OAuth methods).
I'm guessing it has something to do with URL encoding the user_status parameters because they include brackets that normally need to be URL encoded (user_status[book_id]).
Have you guys seen this before? or is there an alternate parameter I can use that doesnt need to be URL-encoded (user_status_book_id?)
I'm guessing it has something to do with URL encoding the user_status parameters because they include brackets that normally need to be URL encoded (user_status[book_id]).
Have you guys seen this before? or is there an alternate parameter I can use that doesnt need to be URL-encoded (user_status_book_id?)
Thanks