13

很高兴能在 StackOverflow 上提出我的第一个问题。这些年来,我一直依靠它来自学很多东西!

我的问题是这个。尝试通过 Mandrill 的 API 发送邮件时出现以下错误:

{"status":"error","code":-1,"name":"ValidationError","message":"You must specify a key value"}

下面的代码是我用来尝试发送邮件的代码:

<?php
$to = 'their@email.com';
$content = '<p>this is the emails html <a href="www.google.co.uk">content</a></p>';
$subject = 'this is the subject';
$from = 'my@email.com';

$uri = 'https://mandrillapp.com/api/1.0/messages/send.json';
$content_text = strip_tags($content);

$postString = '{
"key": "RR_3yTMxxxxxxxx_Pa7gQ",
"message": { 
 "html": "' . $content . '",
 "text": "' . $content_text . '",
 "subject": "' . $subject . '",
 "from_email": "' . $from . '",
 "from_name": "' . $from . '",
 "to": [
 {
 "email": "' . $to . '",
 "name": "' . $to . '"
 }
 ],
 "track_opens": true,
 "track_clicks": true,
 "auto_text": true,
 "url_strip_qs": true,
 "preserve_recipients": true
},
"async": false
}';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postString);
$result = curl_exec($ch);
echo $result;

?>

什么可能导致消息中的验证错误。我正在提供我的 API 密钥,它是有效的!

希望有人能够提供帮助,并感谢您在这里的普遍表现!

谢谢!

4

7 回答 7

16

您可能还想只使用数组,让 PHP 为您处理 JSON 编码。如果 JSON 由于某种原因无效,则此特定错误很常见。因此,例如,您可以像这样设置参数:

$params = array(
    "key" => "keyhere",
    "message" => array(
        "html" => $content,
        "text" => $content_text,
        "to" => array(
            array("name" => $to, "email" => $to)
        ),
        "from_email" => $from,
        "from_name" => $from,
        "subject" => $subject,
        "track_opens" => true,
        "track_clicks" => true
    ),
    "async" => false
);

$postString = json_encode($params);

如果需要,您还可以使用它json_decode来解析响应。

于 2013-07-17T13:55:12.823 回答
12

Bansi 的回答适用于 Dan B,但如果其他人遇到同样的问题,最好检查内容是否有特殊字符(重音、变音符号、变音符号、撇号等)。如果是这种情况,解决方案可能是对文本进行 utf8 编码:

$content = utf8_encode('<p>Greetings from Bogotá, Colombia. Att:François</p>');
于 2013-12-01T00:14:36.230 回答
3

我不知道 mandrill,但你的$content字符串中有双引号",你的分隔符$postString也是双引号。这将打破任何语言。您需要按照 mandril 的要求转义中的双引号$content

"html": "' . $content . '",将转化为

"html": "<p>this is the emails html <a href="www.google.co.uk">content</a></p>",
                                            ^                ^

尝试

 "html": "' . str_replace('"','\\"',$content) . '",
 "text": "' . str_replace('"','\\"',$content_text) . '",

代替

 "html": "' . $content . '",
 "text": "' . $content_text . '",
于 2013-07-17T12:46:30.550 回答
1

PHP Mandrill API 错误:“Mandrill_ValidationError - 您必须指定键值”

此错误还可能表明 json_encode() 编码失败并返回空字符串。当通过 curl 将空字符串提交给 Mandrill 时,它不会让您知道它得到了完全空的 POST 内容,而是发出有用的消息“您必须指定一个键值”。

显然,可以通过在多个级别进行更好的检测来缓解这个问题:

  • API 级别的 Mandrill 可能会返回类似“Empty POST”的错误
  • Mandrill.php API 类可能会返回类似“json_encode 失败,可能是非 base64 图像或内容问题”的错误
  • Mandrill.php API 类可以检查图像中的非 base64 内容并给出类似“未编码图像”的错误
  • 如果 json_encode() 抛出某种错误会很好(不确定这个错误)

目前这些都没有完成,因此调试起来非常困难。

在我的案例中,简单的解决方法是在包含图像内容之前有效地更改代码以运行 base64_encode(),即:

          'content' => base64_encode(file_get_content("image.jpg"),

如上所述,更好的解决方法是升级 Mandrill.php API 文件以检测编码失败并引发错误。

于 2018-08-02T02:59:08.033 回答
0

一直在尝试使用 Dan 的 curl 设置将 html 丰富的消息发布到 Mandrill,但这次在 message/send-template.json api 的 template_content: [] 数组中使用 html。

我注意到这个设置(包括 Bansi 修复)似乎在 Mandrill 的试用页面中工作:https ://mandrillapp.com/api/docs/messages.JSON.html#method=send-template

但是在我的 php 脚本中,我一直收到这个顽固的You must specify a key value错误。显然多亏了这个线程,我通过将 utf8 作为字符集添加到请求标头来解决了这个问题:

$ch = curl_init();
$headers = array("Content-type: application/json;charset=\"utf-8\""); 
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt($ch, CURLOPT_HTTPHEADER,$headers);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postString);

$result = curl_exec($ch);
于 2015-10-20T15:07:28.250 回答
0

在 Laravel 7.x 中,Mandrill 不再是核心的一部分。如果您像我一样使用therobfonz/laravel-mandrill-driver.env 文件,如果您未能在 .env 文件中设置 Mandril 键,您也可能会看到类似的错误。

我有这个 MANDRILL_SECRET=h3xxxx ,但我需要这个MANDRILL_KEY=h3xxxx

要验证您正在调用哪个键,请在config\services.php

    // Mandrill is no longer core laravel...
    'mandrill' => [
        'secret' => env('MANDRILL_KEY'),
    ],

不调用密钥的另一个症状是失败的调用不会显示在 Mandrill api-log 列表中(因为缺少密钥意味着 Mandrill.com 不知道在哪里发布失败的尝试)。

于 2020-03-18T15:10:21.130 回答
-1

您还需要从 html 代码中删除新行:

$content = trim(preg_replace('/\s+/', ' ', $content));

于 2013-10-29T08:49:35.287 回答