I am able to PublishTweets without issue with the given access token and secret and consumer key combination under ExecuteOperationWithCredentials. But when I try and create a tweet with Media and Publish it.. this area in the execution on EndGetResponse returns with exception 403 Forbidden. Any suggestions on what is wrong. Like I said... I can PublishTweets fine with same credentials.
try
{
var response = request.EndGetResponse(a);
using (StreamReader streamReader = new StreamReader(response.GetResponseStream()))
{
result = streamReader.ReadToEnd();
manualResetEvent.Set();
}
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
Comments: Associated with changeset 36245: Version 0.9.2.3 and Version 0.9.3.0
- Solved a bug that could make Tweetinvi freeze when publishing a tweet with an image and receiving an exception.
try
{
var response = request.EndGetResponse(a);
using (StreamReader streamReader = new StreamReader(response.GetResponseStream()))
{
result = streamReader.ReadToEnd();
manualResetEvent.Set();
}
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
Comments: Associated with changeset 36245: Version 0.9.2.3 and Version 0.9.3.0
- Solved a bug that could make Tweetinvi freeze when publishing a tweet with an image and receiving an exception.