The code below is posting from developers machine to our twitter feed yet when moved to production the code executes without exception but the tweets never show up on the feed. Any ideas for a solution? Has this ever happened to anyone before? Thanks.
var tAuth = new SingleUserAuthorizer
{
Credentials = new SingleUserInMemoryCredentials
{
ConsumerKey = AppId,
ConsumerSecret = AppKey,
TwitterAccessToken = AuthTokenKey,
TwitterAccessTokenSecret = AuthToken
}
};
var tCtx = new TwitterContext(tAuth);
tCtx.UpdateStatus(message);