0

尝试从我的公司网站 POST 和 XML 到 FRESHDESK API 时出现此错误

这是javascript

$(document).ready(function(){
  var data = 
  '<helpdesk_ticket>' +
    '<description>This is a test</description>' +
    '<email>sample@example.com</email>' + 
  '</helpdesk_ticket>'
$.support.cors = true;
$.ajax({
    url: 'http://onehouse.freshdesk.com/helpdesk/tickets.xml',
    type: 'POST',
    crossDomain: true,
    data: data,
    dataType: "text",
    username: 'MY API CODE',
    password: 'X',

    success: function (result) {
        alert(result);
    },
  });

完整的错误是

XMLHttpRequest cannot load http://onehouse.freshdesk.com/helpdesk/tickets.xml. Origin http://localhost:3000 is not allowed by Access-Control-Allow-Origin. contacts?oid=00DU0000000I430&retURL=http%3A%2F%2Fwww.ironridge.com&email=ma…utes%5D%5Bdescription_html%5D=safsadfsdaf&00NU0000002xpYP=&submit=Submit:1

有没有人对此有任何解决方案........它不会将数据发布到 FRESHDESK 网站,而且我这几天一直在敲我的脑袋

4

2 回答 2

1

它在错误中说。

由于. _ _jsonp _Access-Control-Allow-Origin

于 2013-07-31T19:21:14.960 回答
0

这是一个 CORS 功能(请参阅http://en.wikipedia.org/wiki/Cross-origin_resource_sharing)。即使您在请求中设置crossDomaintrue,您发布到的服务器也必须支持 CORS 才能正常工作。即,服务器必须使用特定的 HTTP 标头响应浏览器以允许此请求。

于 2013-07-31T19:26:43.043 回答