Congratulations - C# Corner Q4, 2022 MVPs Announced
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
C# Corner Home
Technologies
Monthly Leaders
ASK A QUESTION
Forum guidelines
Farrukh Javeid
0
38
0
Help with Twitter Application
Jul 22 2010 1:45 PM
Hello Folks,
I am developing an application in C# that searches the Twitter accounts through Twitter API. I am having a problem with the application, I have searched a query from the Twitter and now I want to get the result decoded from the xml file generated. This file is at JSON endpoint.
Warm Regards,
This is the code I am trying to implement.
SearchQuery = tbx_SearchQuery.Text.Trim();
Twitter.PublicTwitt myTwitter = new Twitter.PublicTwitt();
string strReslut = "";
XmlDocument xmlResult = null;
strReslut = myTwitter.GetSearchResult(SearchQuery, true, Twitter.OutputFormatType.json);
xmlResult = myTwitter.GetSearchResultAsAtom(SearchQuery, true);
Reply
Answers (
0
)
Visual Basic .NET Step by Step Introduction
Having a running service open a window?