Hi,
This method is not yet implemented but you can use the TwitterAccessor like this :
Concerning user list this is a bit more complicated, here is the code you need:
I can see how the 2 posts are related but please try to open news posts if the features are different.
Regards,
Linvi
This method is not yet implemented but you can use the TwitterAccessor like this :
// var queryWithUserId = "https://api.twitter.com/1.1/users/report_spam.json?user_id=YOUR_USER_ID";var queryWithScreenName = "https://api.twitter.com/1.1/users/report_spam.json?screen_name=YOUR_USER_SCREEN_NAME"; var spamReportedSuccessfully = TwitterAccessor.TryExecutePOSTQuery(queryWithScreenName);
publicclass BlockedUsersContainer { public IEnumerable<IUserDTO> Users { get; set; } public IEnumerable<IUser> BlockedUsers { get { return User.GenerateUsersFromDTO(Users); } } } // Invoke the reques in your codevar blockedUsersQuery = "https://api.twitter.com/1.1/blocks/list.json?skip_status=true"; var blockedUsers = TwitterAccessor.ExecuteGETQuery<BlockedUsersContainer>(blockedUsersQuery).BlockedUsers;
Regards,
Linvi