I would like to display my facebook application credits revenue (the chart you see on Apps->My cool app->Insights->Credits->Revenue chart) in a third party Business intelligence application, meaning I want to retrieve the data through code.
Moreover, I would like to get the actually profit, and not just revenue, I've looked and looked and couldn't find where I can find the data displayed on that chart, I did however find this url:
which allows me to get the orders, but the details of a returned order json is:
{
"id": "9006187786070",
"from": 221159,
"to": 221159,
"amount": 1,
"status": "settled",
"application": {
"name": "SampleApp",
"canvas_name": "fbdschultzcredits",
"namespace": "fbdschultzcredits",
"id": "128163550571392"
},
"created_time": "2011-11-16T19:39:52+0000",
"updated_time": "2011-11-16T19:39:55+0000"
}
which does not contain any real money or transaction details.
I guess I could take the amount and multiply it by 0.1 USD (assuming the formula for charging X facebook credits is X * 0.1 USD)
but that is still without the deduction facebook make on the purchasing of facebook credits.
In short, is there a way to access my application revenue and real-profit through Graph API/FQL/Something?
Thanks.