返信がない理由を誰か教えてもらえますか?
<%
RssURL = "https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=nrcGOV"
Set xmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0")
xmlHttp.setProxy 2, "www.proxy.mydomain.com:80"
xmlHttp.Open "Get", RssURL, false
xmlHttp.Send()
myXML = xmlHttp.ResponseText
myXMLcode = xmlHttp.ResponseXML.xml
response.Write(myXML)
response.Write(myXMLcode)
response.Write("hey")
%>
クライアント側のコードで操作できるサーバーに、Twitter API から RSS フィード xml を取得しようとしています。このコードでフィードを取得できない理由を誰か教えてもらえますか?