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 have used the following code for open the Facebook Pay Dialog box for My application app on Facebook but getting error :

  <script src="http://connect.facebook.net/en_US/all.js"></script>

Buy

FB.init({appId: 367311903326028, status: true, cookie: true}); function placeOrder() { // If using mobile, this is where you place the // iOS native app check for credits (see below) // Assign an internal ID that points to a database record var order_info = 'abc123'; // calling the API ... var obj = { method: 'pay', order_info: order_info, action: 'buy_item', dev_purchase_params: {'oscif': true} }; FB.ui(obj, callback); } var callback = function(data) { if (data['order_id']) { return true; } else { //handle errors here return false; } }; function writeback(str) { document.getElementById('output').innerHTML=str; }


Error :

There Was a Problem Processing Your Payment
Sorry, but we're having trouble processing your payment.
You have not been charged for this transaction. Please try again.

Please can anyone suggest me what going wrong here.

Thanks

share|improve this question

1 Answer

Without more information it's really hard to know what the issue is here. Specifically, what response are you supplying to the payments_status_update request? Can you show us the code that handles those requests, or an example of your response?

I've personally seen that error message in cases where our callback was responding incorrectly to the payments_status_update request, but it could be something else.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.