-
Notifications
You must be signed in to change notification settings - Fork 221
Account Settings
linvi edited this page Jun 8, 2015
·
6 revisions
Twitter gives you the possibility to get and set some of an authenticated user settings.
// Get the twitter settings for the authenticated user
var userSettings = loggedUser.GetAccountSettings();
var parameter = new AccountSettingsRequestParameters()
{
Languages = new List<Language> {Language.English, Language.French},
// ...
};
var newAccountSettings = Account.UpdateAccountSettings(parameter);