'How can I get live comments via Facebook developer?

I used the live comments API on Facebook developer. It only returns a response with the message, but I want the Facebook person ID along with the message.

I want to get this format:

{
  "created_time": "2021-10-21T07:24:52+0000",
  "from": { "name": "xxx", "id": "xxxxx" },
  "message": "123",
  "id": "628671801633800_628673188300328"
}

But I get this format via Facebook live comment API:

{
  "created_time": "2021-10-21T07:26:22+0000",
  "message": "456",
  "id": "628671801633800_628673944966919"
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source