0

有谁知道需要传递给文档https://developers.facebook.com/docs/reference/api/页面上概述的“to”和“message_tags”字段的数组或对象的格式邮政/

4

1 回答 1

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来查找语法。

于 2013-07-05T16:42:31.983 回答