【发布时间】:2016-08-06 16:15:18
【问题描述】:
当关注this example时。
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、副标题或按钮)需要非空值\" ,\"type\":\"OAuthException\",\"code\":100,\"fbtrace_id\":\"ElbXaF25+0G\"}
我错过了什么吗?在我看来,所有相关字段都存在。
【问题讨论】:
-
查看这里的文档时:developers.facebook.com/docs/messenger-platform/… 唯一需要的是
template_type, elements and title但错误消息是说至少需要一个其他字段。 -
我也有同样的问题,你找到解决办法了吗?
标签: facebook bots facebook-messenger