1

In the middle of writing an application that heavily relies on cURL I came across an error. The error cURL returns is

<HTML><HEAD><TITLE>Error</TITLE></HEAD><BODY>
An error occurred while processing your request.<p>
Reference&#32;&#35;179&#46;671d1f45&#46;1280621802&#46;1a9c0add
</BODY></HTML>

The command I use is

curl -T /test.txt http://idisk.me.com/myAccount/Public/myFolder/

MyAccount and MyFolder I replace with the correct info. Could it be that my host (Apple) is now denying curl uploads for some reason?

Thanks for any help this is really puzzling

2 Answers2

2

Try using a different user-agent:

curl -A 'other user agent' -T /test.txt http://idisk.me.com/myAccount/Public/myFolder/
0

The error you are receiving is an error typically returned by Akamai CDN. If you have access to Akamai Control Portal, then you should go to the support section and look for the error translator tool. There you can insert the Reference number you get in return with cURL. In this particular case it is Ref:#179.671d1f45.1280621802.1a9c0add

The error could be related to wrong credentials, maximum number of requests per day reached, etc.

Once you translate the error, it will tell you exactly why the error response at which point you can troubleshoot much easily.

MikeBoss
  • 186