2

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.

kart
  • 625
  • 3
  • 12
  • 21

1 Answers1

1

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

public Twitter(string UserName, string Password, string Source)
GraemeF
  • 11,327
  • 5
  • 52
  • 76
  • i changed as public twitter(username, password, myname); it is now changed as web instead of twitterzer, is that i can specifically give my name in the place of web.. – kart Nov 07 '09 at 10:23