我正在尝试测试Curl示例,以便用我的机器人发送广播,因此我与邮递员对包含以下代码的URL:https://graph.facebook.com/v2.11/me/message_creatives?access_token=进行了后期通话:
"messages": [
{
"attachment":{
"type":"template",
"payload":{
"template_type":"generic",
"elements":[
{
"title":"Welcome to Our Marketplace!",
"image_url":"https://www.facebook.com/jaspers.png",
"subtitle":"Fresh fruits and vegetables. Yum.",
"buttons":[
{
"type":"web_url",
"url":"https://www.jaspersmarket.com",
"title":"View Website"
}
]
}
]
}
}
}
]
我收到此错误:
"error":{ "message":"(#100) Invalid data",
"type":"OAuthException",
"code":100,
"error_subcode":2018032,
"fbtrace_id":"DQ2zWXeC8cA"
}
知道我的聊天机器人尚未获得批准,这是问题的根源还是其他原因? 谢谢。