Posts under category Meta & Facebook

Hello, I'm implementing Facebook Core sdk to be able to run app facebook campaigns. I have a question about what should be added to an iOS and Android project so that campaigns are not limited in any way. I can see that for i need to add to project manifest/info.plist the fb appid, fb client id and fb appname and in iOS on app delegate I need to call: ApplicationDelegate.shared.application
Is there anything else that I need to call/configure for both iOS and Android since I can see some things mentioned in the documentation below: https://developers.facebook.com/docs/app-events/getting-started-app-events-ios/ like: advertiser id collectable, auto log app events etc.

We are applying for the instagram_business_basic scope and have provided a test IG account to the reviewers. However, the feedback we received states: "While reviewing we are unable to process as provided Instagram credentials are leading to a 2FA." Unfortunately, we are unable to disable 2FA from the Instagram app, nor can we provide access to the reviewers through backup codes.
What are the possible ways to ensure that the reviewers can successfully log in to our IG account?

I am experiencing an issue with the Facebook API where certain permissions requested by my application are not being included in the user's access token, even though the user has granted all requested permissions.
Requested Permissions: - ads_management - business_management - leads_retrieval - pages_manage_ads - pages_manage_metadata - pages_read_engagement - pages_show_list
Observed Behavior: After the user grants all the requested permissions, the access token retrieved only includes the following permissions:

{
"data": [
{
"permission": "pages_show_list",
"status": "granted"
},
{
"permission": "ads_management",
"status": "granted"
},
{
"permission": "pages_read_engagement",
"status": "granted"
},
{
"permission": "pages_manage_metadata",
"status": "granted"
},
{
"permission": "pages_manage_ads",
"status": "granted"
},
{
"permission": "public_profile",
"status": "granted"
}
]
}
Missing Permissions:
business_management
leads_retrieval
Impact: The absence of the leads_retrieval permission causes the following error when accessing the endpoint https://graph.facebook.com/xxxxx/subscribed_apps:
{
"error": {
"message": "(#200) To subscribe to the leadgen field, one of these permissions is needed: leads_retrieval",
"type": "OAuthException",
"code": 200,
"fbtrace_id": "ANFgjRDObuYno84WEkPHOED"
}
}