Follow user using TweetSharp
-
I use following code to follow user: TwitterService ts = new TwitterService(TWI_CONSUMER_KEY, TWI_CONSUMER_SECRET); ts.AuthenticateWith(token.Token, token.Secret); var users = ts.SearchForUser(query); //Get list of users by query //... foreach (var user in users) { var u = ts.FollowUser(user.Id); //Follow user } and get exception: System.ArgumentException: Item with the same key has already been added Are there any mistakes? Please help me.
-
Answer:
The exception is being thrown as the user your adding, you're already following. You'll need to either: Check if your already following that user, then follow Wrap the var u.ts.FollowerUser(..) in a try/catch so the loop will continue
Yury at Stack Overflow Visit the source
Related Q & A:
- How can I allow user to create posts in website using ASP.NET?Best solution by Programmers
- Is it possible to allow a client/user to log into a Remote Desktop session using credentials other than their AD username/password? (for SSO?Best solution by Server Fault
- How to get another user's details using RestFB?Best solution by Stack Overflow
- how to register a user using afnetworking?Best solution by Stack Overflow
- Do follow And No follow?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.