Issue with Facebook Product Catalog API: Missing Data in Response
I've been making requests to the Product Catalog Products API using this URL:
Until recently, everything worked fine, but now the response only returns the name field. Here's an example of the response I'm getting:
{ "data": [ { "name": "Water" } ], "paging": { "cursors": { "before": "[BEFORE_CURSOR]", "after": "[AFTER_CURSOR]" }, "next": "[NEXT_URL]", "previous": "[PREVIOUS_URL]" } }
The fields such as description, price, visibility, and others are missing. Has anyone encountered this issue, or are there changes to the API that I may have missed?