我正在尝试从 user_id 获取页面范围 id (PSID)
据我所知,一个用户有两种 ID:一种用于 Graph API Platform (GID),另一种用于 Messenger 平台 (MID)。
(PSID = MID,user_id = GID)
我找到了从 GID 更改为 MID 的方法:
GET /{GID}/ids_for_pages?access_token=[page_access_token]&appsecret_proof=[appsecret_proof]
enter code here
json 我收到:
{ "data": [
{
"id": "MID here",
"page": {
"name": "Trang web b\u00e1n h\u00e0ng",
"id": "1863210517250420"
}
} ], "paging": {
"cursors": {
"before": "MTg2MzIxMDUxNzI1MDQyMAZDZD",
"after": "MTg2MzIxMDUxNzI1MDQyMAZDZD"
} }}
现在我想从 MID 更改为 GID。
我试试这个
GET /{MID}/ids_for_pages?access_token=[page_access_token]&appsecret_proof=[appsecret_proof]
但我得到错误
{ "error": {
"message": "(#230) Requires pages_messaging permission to manage the object",
"type": "OAuthException",
"code": 230,
"fbtrace_id": "D+x01MWia1s" }}
我在这里阅读了 Facebook 的文档,但我找不到从 MID 更改为 GID 的方法。
请帮我。感谢您阅读我的问题。