C# Send tweets on twitter from multiple accounts -


well workin on c# application , want able send tweets multiple twitter accounts . wanted know possible ?

edit : sorry not being specific :d how can done ?

the short answer question is: yes.

the bit longer answer is: yes it's possible , recommend have @ linq twitter. library simple use , allows connect twitter in no-time:

    var auth = new applicationonlyauthorizer     {         credentials = new inmemorycredentials         {             consumerkey = "twitterconsumerkey",             consumersecret = "twitterconsumersecret"         }     };      auth.authorize();      var twitterctx = new twittercontext(auth);     var tweet = twitterctx.updatestatus("hello world"); 

auth part copied joe mayo here: twitter api application-only authentication (with linq2twitter)


Comments

Popular posts from this blog

blackberry 10 - how to add multiple markers on the google map just by url? -

php - guestbook returning database data to flash -

delphi - Dynamic file type icon -