Hi,
Please verify that you have set your credentials correctly.
The please change Tweet.PublishTweet("This is a test of the station tannoy system."); into :
The Guid.NewGuid() allow you to ensure that you do not retweet the same thing twice in a short amount of time because Twitter does not allow to do this from the API.
Same thing for the "Hello" tweet, add Guid.NewGuid at the end.
If this still does not work, please check that the created tweets are not null. If they are please send the information from the ExceptionHandler :
Linvi
Please verify that you have set your credentials correctly.
The please change Tweet.PublishTweet("This is a test of the station tannoy system."); into :
Tweet.PublishTweet("My tweet : " + Guid.NewGuid());
Same thing for the "Hello" tweet, add Guid.NewGuid at the end.
If this still does not work, please check that the created tweets are not null. If they are please send the information from the ExceptionHandler :
var exceptionInfos = ExceptionHandler.GetLastException();