我从 facebook credits 实现示例,并创建一个测试应用程序,callback.php
在回调 URL 中添加,正确放置我的密钥。但我收到此错误:
Sorry, but we're having trouble processing your payment. You have not been charged for this transaction. Please try again.
我正在尝试创建一些具有不同货币价值的按钮。像:
Click to get 100 credits
Click to get 1000 credits
如果我使用这个通用代码,我可以很好地获得付款窗口,但在那里看不到我的产品,我只能从已经制作的预设中进行选择:
function buyMore(){
// calling the API ...
var obj = {
app_id: 'xxxxxxxxxxxxxxxxxxxxx',
method: 'pay',
order_info: n,
purchase_type: 'item',
credits_purchase: true
};
为了向用户展示我的货币预设,我认为我需要将不同的值传递给函数:
<p><a onclick="buyMore('100'); return false;">Buy More Credits 100</a></p>
<p><a onclick="buyMore('1000'); return false;">Buy More Credits 1000</a></p>
function buyMore(price) {
var order_info = {
"title":'title',
"description":'description',
"price":price,
"image_url":'http://....img_url',
"product_url":'http://....product_url'
};
// calling the API ...
var obj = {
app_id: '153230661424821',
method: 'pay',
order_info: order_info,
purchase_type: 'item'
};
}
不确定我是否做对了。
谁能把我推向正确的方向?