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
Post a Comment