How can I find details like:
- language
- profile image URL
- time zone
I'm using this code to authenticate only. The callback works great!
How can I go beyond authentication with DotNetOpenAuth to get the profile details?
public bool FinishAuthentication()
{
using (var twitter = new WebConsumer(ServiceDescription, _tokenManager))
{
var accessTokenResponse = twitter.ProcessUserAuthorization();
if (accessTokenResponse != null)
{
string userName = accessTokenResponse.ExtraData["screen_name"];
string id = accessTokenResponse.ExtraData["user_id"];
//-----how can we get all the other profile info?-----
GetProfileDetails(id);
return true;
}
}
return false;
}
public void GetProfileDetails(string id)
{
//unsure how to implement with DotNetOpenAuth.
}