I have some applications with actual / old payment. works great. Company registered, etc. Everything is fine and works for a year or so.
Now I'm moving on to a new, open, graphical object managed by the system. Totally not working.
creating and registering objects works great. This is the object that I registered. The debugger does not give errors:
<head prefix= "og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#"> <meta property="og:type" content="og:product" /> <meta property="og:title" content="Pinky" /> <meta property="og:plural_title" content="Pinkies" /> <meta property="og:image" content="https://MY_URL/picture.png" /> <meta property="og:description" content="Pinky " /> <meta property="og:url" content="https://MY_URL/object.html" /> <meta property="product:price:amount" content="0.40"/> <meta property="product:price:currency" content="USD"/> <meta property="product:price:amount" content="0.32"/> <meta property="product:price:currency" content="GBP"/> <meta property="product:price:amount" content="0.24"/> <meta property="product:price:currency" content="EUR"/> </head>
after registering with the debugger tool, I call up a dialog box with payment:
var obj = { method: 'pay', action: 'purchaseitem', product: "https://MY_URL/object.html" }; FB.ui(obj, function(data) { });
But I always get an error message. Error error_code (yet?) Described on Facebook. error_code: 1353028 error_message: "Sorry, a problem has occurred and we cannot complete your request. Please try again later."
Y rick off
source share