kart
kart

Reputation: 625

Post in Twitter using C# application

I can able to post the tweet through my application using C# with twitterizer API,and the new post is posted in my twiiter site like this

"New Post: This Post for twitter test about 18 hours ago from Twitterizer"

in this in the bottom it is showing as "twitterizer" but i don't want to show the tool name to my users..is there any way to hide that "twitterizer" or is it possible to rename as my application name.

Upvotes: 2

Views: 1954

Answers (1)

GraemeF
GraemeF

Reputation: 11457

You can supply your own source to the Twitterizer library using the following constructor:

public Twitter(string UserName, string Password, string Source)

Upvotes: 1

Related Questions