Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

https://graph.facebook.com/APP_ID/payments?status=settled&since=1320537600&until=1320624000&access_token=ACCESS_TOKEN

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.