I have some apps with the actual/old payment running. works fine. Company registered etc. all fine and working for a year or so.
Now I am migrating to the new, open Graph object driven, system. Totally not working.
the creation and registration of objects works fine. This is the object I have registered. The debugger gives no error:
<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 registration with the debugger tool i invoke the pay-dialog like that:
var obj = { method: 'pay',
action: 'purchaseitem',
product: "https://MY_URL/object.html" };
FB.ui(obj, function(data) { });
But I always get an error as result. The error_code is not (yet?) described on Facebook. error_code: 1353028 error_message: "Sorry, there was a problem and we can’t complete your request. Please try again later."