I solved this problem by eliminating the spaces from the json file. Let's say your json file looks like this:
{
"created_at": "01/01/2021",
"id": 1050118621198921720,
"text": "To make room for more expression”
"user": {
"id": 6253282,
"name": "Bertrand",
"location": "San Francisco",
"followers_count": 613
}
}
{
"created at": "29/03/2021",
"id": 1050118621198921729,
"text": "salut Tunisie”
"user": {
"id": 6253559,
"name": "Jhon",
"location": "London",
"followers_count": 89
}
}
{
"created at": "25/10/2021",
"id": 1050118621198921721,
"text": "Essai”
"user": {
"id": 6253553,L’énoncé de l’examen est clair, aucune clarification n’est permise au cours de l’épreuve !
"name": "Philippe",
"location": "Paris",
"followers_count": 6133636
}
}
{
"created_at": "29/03/2021",
"id": 1050118621198921728,
"text": "test”
"user": {
"id": 6253284,
"name": "Patrick",
"location": "Marseille",
"followers_count": 33636
}
}
It must look like this:
{"created_at": "01/01/2021","id": 1050118621198921720,"text": "To make room for more expression","user": {"id": 6253282,"name": "Bertrand","location": "San Francisco","followers_count": 613}}{"created at": "29/03/2021","id": 1050118621198921729,"text": "salut Tunisie","user": {"id": 6253559,"name": "Jhon","location":"London","followers_count": 89}}{"created at": "25/10/2021","id": 1050118621198921721,"text": "Essai","user": {"id": 6253553,"name": "Philippe","location": "Paris","followers_count": 6133636}}{"created_at": "29/03/2021","id": 1050118621198921728,"text": "test","user": {"id": 6253284,"name": "Patrick","location": "Marseille","followers_count": 33636}}