我无法在 IE9 上使用此脚本访问 URL。在 Chrome 和 Firefox 上它工作正常。F12当我在 IE9 上调试 ( ) 时,我收到:
SCRIPT5: ACCESS DENIED.
我的功能:
function NewPage2() {
var xmlHttp;
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
xmlHttp = new XMLHttpRequest();
} else { // code for IE6, IE5
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlHttp.open("GET", "https://graph.facebook.com/oauth/access_token?client_id=" +
'<%=ConfigurationManager.AppSettings["clientId"].ToString() %>' +
'&redirect_uri=' + <%=ConfigurationManager.AppSettings["redirectUrl"].ToString() %>' +
'&state=' + document.getElementById('text').value +
'&client_secret=' + '<%=ConfigurationManager.AppSettings["client_secret"].ToString() %>' +
'&code=' + getUrlVars2()["code"], false);
xmlHttp.send(null);
end(xmlHttp.responseText + "&userId=" + getUrlVars2()["state"]);
}