操作,发生错误

  • 本文关键字:错误 操作 mashape
  • 更新时间 :
  • 英文 :


Mashape不要给我任何支持,除非是工作时间,所以我希望你能给我一些答案

我正在尝试通过我的API上传文件。

有人知道mashape为什么会产生这种错误吗?它意味着什么,或者如何解决或避免它。它不是来自我的服务器。我的API永远不会返回它。使请求直接到我的API工作,因为它应该!

[body]    => {"message":"Ops, an error occurred (╯°□°)╯"}
[status]  => 500 Internal Server Error
[headers] => 
   access-control-allow-credentials:true
   Connection:keep-alive
   Content-Length:54
   Content-Type:application/json
   Date:Sun, 23 Aug 2015 18:34:27 GMT
   Server:Mashape/5.0.6
   X-Mashape-Proxy-Response:true

对我来说,这似乎是一个问题与Mashapes代理?

编辑

进一步调查表明,这与

的大小有关。
var content = "kokokoko".repeat(1200); // Uploading a small file works fine
// var content = "kokokoko".repeat(1300); // Uploading a larger file produce the error above
var fd = new FormData();
fd.append("format", 'ttf');
fd.append("file", new Blob([content]), "filename.ext");
$.ajax({
  url: 'https://ofc.p.mashape.com/directConvert/', 
  headers: {'X-Mashape-Key': 'xxxxx'},
  method:"post",
  data: fd,
  cache: false,
  contentType: false,
  processData: false,
})

编辑2 它现在工作了,但仍然无法解释消息Ops, an error occurred (╯°□°)╯意味着

这个错误正在发生。这个特定的错误响应来自maspahe代理,而不是底层服务。

相关内容

  • 没有找到相关文章

最新更新