'Get full Instagram Messenger API Conversation List

I'm currently building a chatbot for instagram

I'm following this doc : https://developers.facebook.com/docs/messenger-platform/instagram/features/conversation/

In order to get all my conversation threads...

GET <PAGE_ID>/conversations?platform=instagram
{
  "conversations": {
    "data": [
      {
        "id": "<THREAD_ID1>"
      },
      {
        "id": "<THREAD_ID2>"
      },
      ...
   ]
}  

This GET is working, but unfortunately I can only see one conversation, which is a facebook test account that followed us to test our chatbot.

Do anyone know why I wan't see the other threads ? I'm really desperate...



Sources

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

Source: Stack Overflow

Solution Source