当遵循这个例子时。
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\"}
我错过了什么吗?在我看来,所有相关领域都存在。