我已经尝试了很多,但无法通过XMLHttpRequest发送POST 这就是代码
var xhr = new XMLHttpRequest();
var params="device=android&device_token="+Notifications.remote.token"
xhr.open("POST", "https://xxx.xxx.it/test.php",true);
xhr.setRequestHeader("Access_Token", "11bdf06b9fda0639b300c023cb0b3ba5");
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.setRequestHeader("Content-length", params.length);
xhr.send(params);
调用页面但没有传递任何内容..没有Access_Token且没有POST值
答案 0 :(得分:0)
如果您使用的是桌面版,则无法执行此操作。您必须使用WebClient类,我无法找到桌面文档,因为Smartface已更新为Cloud并将其删除(或至少隐藏它),抱歉。但是有关于Stack Overflow的另一个问题,我解释了如何将Firebase与Smartface一起使用,我建议您阅读它以便更好地理解。
How to create a webservice for a login system?
希望有所帮助! :)