Im使用Tweetinvi 4.0.3和.NET 4.7.2。我做了一个新项目,我只是在测试,试图让Twitter与我的桌面应用程序一起工作。我使用的是Tweetinvi的wiki示例,但它抛出了一个异常:
System.NullReferenceException:"对象引用未设置为对象的实例。">
因为authenticationContext
从AuthFlow.InitAuthentication(appCredentials);
返回null
这是我的代码:
private void Button1_Click(object sender, EventArgs e)
{
// Create a new set of credentials for the application.
var appCredentials = new TwitterCredentials(ConsumerKey, ConsumerSecret);
// Init the authentication process and store the related `AuthenticationContext`.
var authenticationContext = AuthFlow.InitAuthentication(appCredentials);
// Go to the URL so that Twitter authenticates the user and gives him a PIN code.
Process.Start(authenticationContext.AuthorizationURL);
// Ask the user to enter the pin code given by Twitter
var pinCode = Console.ReadLine();
// With this pin code it is now possible to get the credentials back from Twitter
var userCredentials = AuthFlow.CreateCredentialsFromVerifierCode(pinCode, authenticationContext);
// Use the user credentials in your application
Auth.SetCredentials(userCredentials);
}
你知道我需要做什么才能让它发挥作用吗?我读到一些关于回调URL的内容,但它是一个桌面应用程序,所以我没有回调URL?
花了大量时间后,我终于解决了这个问题。我想Twitter现在需要TLS 1.2,如下所述:https://api.twitterstat.us/(向下滚动至2019年7月25日更新(。将我的.NET Framewokr从4.0升级到4.6解决了这个问题。
我在其他地方读到你可以使用System.Net.ServicePointManager.SecurityProtocol |= System.Net.SecurityProtocolType.Tls12;
。源
希望这对将来的其他人有所帮助。