Hi, I've searched and searched and tried a bunch of different libraries, and for whatever reason my app just doesn't agree with them. Maybe my computer is just dumb (or I am :P )...whatever the reason (I think it's because most libraries seem to be for web apps and not desktop ones), I've had to write my own connection for a desktop application. I'm really really close...I authorize with no problem.
BUT...as soon as I authorize, I post with a whatever it is I'm trying to do (it doesn't matter, I've tried creating/destroying friendships, updating my tweets, deleting tweets...everything). I check my account and nothing gets changed...my response is always the HTML from my profile page. I'm totally confused at this point...the oAuth works but nothing changes and I get HTML back as a response (no XML). If it helps, I've connected with URL's in this format: http://api.twitter.com/1/SEGMENT:9000/action.xml (if I don't put in the :9000 I get a 401 Unauthorized) My authorization header looks like this: OAuth realm=http%3A%2F%2Fapi.twitter.com%2F1%2FSEGMENT %3A9000%2Faction.xml, oauth_consumer_key=MY_CONSUMER_KEY, oauth_token=MY_ACCESS_TOKEN, oauth_nonce=UNIQUE_NONCE, oauth_timestamp=TIMESTAMP, oauth_signature_method=HMAC-SHA1, oauth_version=1.0, oauth_signature=OAUTH_SIGNATURE I execute a WebRequest with the URL above, POST as the WebRequest.Method, and text/xml as the WebRequest.ContentType Any help would be very much appreciated! :) -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list Change your membership to this group: http://groups.google.com/group/twitter-development-talk
