3

当遵循这个例子时。

messageData = {
"attachment": {
  "type": "template",
  "payload": {
    "template_type": "generic",
    "elements": [{
      "title": "First card",
      "subtitle": "Element #1 of an hscroll",
      "image_url": "http://messengerdemo.parseapp.com/img/rift.png",
      "buttons": [{
        "type": "web_url",
        "url": "https://www.messenger.com/",
        "title": "Web url"
      }, {
        "type": "postback",
        "title": "Postback",
        "payload": "Payload for first element in a generic bubble",
      }],
    },{
      "title": "Second card",
      "subtitle": "Element #2 of an hscroll",
      "image_url": "http://messengerdemo.parseapp.com/img/gearvr.png",
      "buttons": [{
        "type": "postback",
        "title": "Postback",
        "payload": "Payload for second element in a generic bubble",
      }],
    }]
  }
}

我收到以下错误:

\"error\":{\"message\":\"(#100) 不完整的元素数据:标题和至少一个其他字段(图片url、副标题或按钮)需要非空值\",\"类型\":\"OAuthException\",\"code\":100,\"fbtrace_id\":\"ElbXaF25+0G\"}

我错过了什么吗?在我看来,所有相关领域都存在。

4

2 回答 2

3

想通了,用红宝石写这个,我需要to_json在发送之前调用哈希。

于 2016-04-14T22:15:35.737 回答
1

是的,在发送之前需要转换为json格式无论是结构化消息还是文本消息。

于 2016-04-27T06:15:56.070 回答