$.ajax({
type: "GET",
url: "http://clientalerts.ebay.com/ws/ecasvc/ClientAlerts?",
data: "version=781&appid=Myappid&callname=Login&ClientAlertsAuthToken=Myauthtoken",
success: function(response)
{
// get the response and parse
data = jQuery.parseJSON(response);
if(data.Ack=="Success"){
alert(data.SessionID);
ses = data.SessionID;
alert(ses);
window.localStorage.setItem("session", ses);
document.location = "test.html";
}
}
});
这是我的代码,我正在尝试获取会话ID以进行登录。它给了我会话ID但它没有编码。我怎样才能获得编码的网址?请帮助。