Facebook Graph API display feed content on website

I took over my site to update it and I saw that my facebook feed is no longer displayed, I inquired and apparently new permissions are now required.

I would simply like to display on my site the latest facebook posts

I don’t have a facebook login on my site, it’s useless to me

I did some tests with postman and now I’m being asked for pages_read_engagement and Page Public Content Access permissions

here is my postman link

https://graph.facebook.com/v9.0/:page_id/:feed?key=value&access_token={access_token}&fields=id,message,picture,link,name,description,type,icon,created_time,from,object_id,likes,comments,attachments{media{image}}

and the result:

{
    "error": {
        "message": "(#10) This endpoint requires the 'pages_read_engagement' permission or the 'Page Public Content Access' feature. Refer to https://developers.facebook.com/docs/apps/review/login-permissions#manage -pages and https://developers.facebook.com/docs/apps/review/feature#reference-PAGES_ACCESS for details.",
        "type": "OAuthException",
        "code": 10,
    }
}

when I asked for Page Public Content Access permission, facebook tells me that my use case does not require this permission, I don’t know what to do now, do you have any idea?

thank you