What is Facebook Third Party ID and How to Get it using Graph API

To get the Facebook Third Party ID for your app Facebook user, try the following code using Graph API: $fbid = $facebook->api(‘/me?fields=third_party_id&access_token=’.$access_token); echo “THIRD PARTY ID: “.$fbid[‘third_party_id’]; What is Third Party ID? Facebook expressly prohibit Platform developers from passing any data from Facebook to data brokers. But sometimes there are practical reasons that developers will…