I'm working with the Meta Graph API and trying to filter results based on a subfield within a nested object. Specifically, I want to retrieve ad accounts with their associated campaigns, but only include campaigns that have a stop_time greater than a certain timestamp.

Here's the query I'm attempting to use:

me/adaccounts?fields=id,name,campaigns{id,name,stop_time}&filtering=[{field:'campaigns.stop_time',operator:'GREATER_THAN',value:'1721630725'}] 

Unfortunately, this doesn't seem to work. I suspect I'm not structuring the filtering correctly for subfields.

Can someone explain how to properly apply filters to subfields in Meta Graph API queries? Is it possible to filter nested objects directly within the main query, or is there a different approach I should take?

Any guidance or examples would be greatly appreciated!

I'm trying to get comments from Facebook live_videos with Facebook SSE.
Despite I can easily retrieve comments with the {live-video-id}/comments graph api using my test app's page access token, I can't make the SSE to work with the same access token.
Trying to connect with eventsource (code below) keep giving { type: 'error', status: 404, message: 'Not Found' }

async execute() {     this.es = new EventSource(       `https://streaming-graph.facebook.com/${live_video_id}/live_comments?access_token=${page_access_token}`,     );     this.es.onopen = (ev) => {       console.log('onopen', ev);     };     this.es.onmessage = (ev) => {       console.log('onmessage', ev);     };     this.es.onerror = (err) => {       console.error(err);     };   } 

Is there anything else that I'm still missing to get the SSE to work?

i'm working on an extension for OpenCart to bind social account to OpenCart Account i'm keep facing this issue:

Error validating verification code. Please make sure your redirect_uri is identical to the one you used in the OAuth dialog request 

i'm sure that the redirect_uri is the same since i'm refrencing the same class variable in step 1 and step 2 of the Facebook login process but still got the same issue.

i had tested all solution suggested by people but none worked. here's my code and a screen shot of "Valid OAuth Redirect URIs"

IG Story permalink fields used to be in a format that would actually link out to the story.
Ex: https://www.instagram.com/stories/{username}/{id}
As of 7/17 the API is returning them in the shortcode format which is no longer a working link.
Ex: https://www.instagram.com/p/C9nd1hSzKn/
When attempting to navigate to the shortcode link we receive an error page with: "Sorry, this page isn't available. The link you followed may be broken, or the page may have been removed. Go back to Instagram."
This is consistent across all users.
Is this an intended change? How should we be able to resolve the actual linkable story URL if so?

I'm trying to test the embeded signup process our company wishes to roll out. We have a verified business account which is a tech provider.
So I have created a facebook app which I am using for the embedded signup flow, that is linked to the business account and configured for the embedded signup flow.
The bit I'm really unclear on is how I am supposed to test this, I have been creating a business and verifying a phone number as part of the embedded signup flow, I have been provding some random business name and a URL to a site, not a real legit businesses, just something to allow me to test. I can complete the signup flow, but within a couple of days, that account always gets disabled with message : "Business Manager profile does not have information that we need to determine whether your business complies with WhatsApp's Business Policy."
Surely I don't need a legit business in order to test this, I understand the error and disabling the account due to the information but is there no such thing as creating a test WA business account? really interested to know how have others tested this?
Everything I google seem to talk about test accounts and numbers but these don't seem relevant for testing a number registered via embedded signup.
Thanks