如Workplace Bot Guide所示,下面的POST请求应该能够将参与者添加到群聊中。
POST t_<thread_id>/participants
{
"to": [<user_ids>]
}
我尝试过
{
"to":["example-of-user-id"]
}
和
{
"to": {"ids":["example-of-user-id"]}
}
和
{
"to":{"id":"example-of-user-id"}
}
和
{
"to":[{"id":"example-of-user-id"}]
}
他们都不在工作,抛出错误
{
"error": {
"message": "(#2) Service temporarily unavailable",
"type": "OAuthException",
"is_transient": true,
"code": 2,
"fbtrace_id": "example_of_fbtraceid"
}
}
这条路线是否适合任何人?