是否有人知道需要传递到文档此页面上列出的“to”和“message_tags”字段的数组或对象的格式https://developers.facebook.com/docs/reference/api/post/
答案 0 :(得分:0)
“to”字段应如下所示:
"to": {
"data": [
{
"name": "Abc Def",
"id": "##########"
}
]
}
“message_tags”字段如下所示。请注意,我所说的“#1#”是从消息文本开头的偏移量,其中标记的第一个字符出现,“#2#”是标记的长度。
"message_tags": {
"#1#": [
{
"id": "##########",
"name": "Abc Def",
"type": "user",
"offset": #1#,
"length": #2#
}
]
}
我在现有对象上使用Facebook Graph Explorer来查找语法。