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