http://www.voiceoftech.com/swhitley/index.php/2009/03/twitter-oauth-with-net/
url = "http://twitter.com/account/verify_credentials.xml";
xml = oAuth.oAuthWebRequest(oAuthTwitter.Method.GET, url, String.Empty);
apiResponse.InnerHtml = Server.HtmlEncode(xml);
如何从 xml 中提取用户数据并将其发送到字符串?即将xml转换为字符串。
string name =
string id=
等等