Status of twitter from arduino (ethernetshield) and OAuth

I would love to have my arduino with a Ethernet shield to twitter stuff out and get direct messages. though I see that twitter has changed their authentication so all the examples I see here and else where with "Basic" authentication don't seem to work. I know there is a twitter library but its using an intermediary, was wondering if there were any examples i'm just not finding that show you how to use OAuth tokens to connect from arduino to twitter via an Ethernet shield?

I just created a library that can tweet directly from Arduino (with Ethernet shield). It implements the OAuth message signing so you don't need any intermediate servers. You can find the library from Arduino Twitter Library with OAuth Support

// mtr

thank you I will try this right away!