Facebook Messenger,发送收据时临时发送邮件失败

时间:2016-04-20 15:56:44

标签: javascript node.js facebook facebook-messenger

我想向用户发送带有虚拟数据的收据。

我使用this library简化了向Facebook发送邮件的信息。

我的有效载荷的结构如下:

var payload = {
    template_type: 'receipt',
    recipient_name: '@' + user.name + ' ' + user.surname,
    order_number: (new Date).getTime(),
    currency: 'USD',
    payment_method: 'Наличными',
    order_url: 'http://www.example.com',
    timestamp: (new Date).getTime() + '',
    elements: [
        {
            title: title,
            subtitle: subtitle,
            quantity: 1,
            price: 20,
            currency: 'USD',
            image_url: image_url
        }
    ],
    address: {
        street_1:"Nurly tau",
        street_2:"",
        city:"Almaty",
        postal_code:"050000",
        state:"KZ",
        country:"KZ"
    },
    summary: {
        subtotal: 20,
        shipping_cost: 0,
        total_tax: 0,
        total_cost: 20
    },
    adjustments: []
};

我刚用简单的假数据填写了收据字段。此外,Facebook追踪所有已发送收据的order_numbers的唯一性。

当我尝试发送此收据时,我收到一条错误消息:

{ message: '(#1200) Temporary send message failure. Please try again later',
  type: 'OAuthException',
  code: 1200,
  fbtrace_id: 'BHmHRCEQUC4' }

这个错误是什么意思? Facebook的错误信息是如此神秘?

2 个答案:

答案 0 :(得分:7)

我遇到了同样的问题,经过一番摆弄后我才明白了!问题是,当您使用(new Date).getTime()构造时间戳时,它会返回自纪元以来 miliseconds 的数量。但是,Facebook要求它在几秒钟内完成。

答案 1 :(得分:5)

我遇到了同样的问题,经过多次尝试,我发现问题在于使用JSON有效负载传递的timestamp参数。

我不知道它可能是什么,但它对我有用。 (也许,在 API调用之前,时间戳应该是,我不知道。)