Hi there,
This feature is implemented but I agree that it is not clear.
To check if the current credentials are valid, you can simply do this:
For the next release I will try to find a better system to do that. Probably using a TwitterCredentials.AreCredentialsValid();
Thank you for the feedback.
Linvi
This feature is implemented but I agree that it is not clear.
To check if the current credentials are valid, you can simply do this:
var user = User.GetLoggedUser(); if (user == null) { // The credentials are invalid Debug.WriteLine(ExceptionHandler.GetLastException().TwitterDescription); } else { // The credentials are valid }
Thank you for the feedback.
Linvi