While implementing local currency payment i encounter the following error :
Sorry, but we're having trouble processing your payment. You have not been charged for this transaction. Please try again.
and after click the close button, i notice the callback return the following error:
Object {error_code: 1383003, error_message: "Account id missing. sender: 160028640868641 receiver: 0"}
Below is the js code:
FB.ui({
method: 'pay',
action: 'purchaseitem',
product: productlink,
request_id: requestID,
quantity: 2
},
callbackPurchase
);
og:product object:
<!DOCTYPE html>
<html>
<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="IE Coupon" />
<meta property="og:plural_title" content="IE Coupons" />
<meta property="og:image" content="https://some-url/clientPage/og/trollface.png" />
<meta property="og:description" content="Interactive coupons" />
<meta property="og:url" content="https://some-url/clientPage/og/ie.php" />
<meta property="product:price:amount" content="0.30"/>
<meta property="product:price:currency" content="USD"/>
</head>
</html>