I have the following code:
var temp = { 'key': '***.....zWw' };
$.ajax({
url: 'https://mandrillapp.com/api/1.0/users/ping.json.',
type: 'POST',
data: temp,
success: function(result) {
console.log(result);
}
});
And this is the response:
{"status":"error","code":-99,"name":"UserError","message":"Unknownmethod\"users.ping.json\""}
I have search online, and I am unable to find this error, so I can only guess I have done something incorrect which is simple.
I have removed and added new Keys, and i have tried alsorts, but still this error.
I have looked on Google Discussions also, but no joy there.
Anyone have an idea ?