I have been working on a reporting script, where part of it involves getting the Facebook ID associated with purchases pulled from reports generated through the Payments Reports API.
The reports generate beautifully, and I then am able to throw any order_id at Graph API to get the Facebook ID:
https://graph.facebook.com/{order_id}?access_token={app_access_token}
returns:
{
"id": "{order_id}"
"from":
"to":
"amount":
"status": ""
"application":
"country":
"created_time":
"updated_time":
}
According to documentation, the 'from' section is the Facebook ID associated with the account.
On occasions, I sometimes will get a long string of letters instead of an ID.
I have been having trouble finding more information in interpreting these -- my suspicion is that these are purchases that no longer are associated with an active Facebook ID, but really unsure here.
