我正在尝试使用 as3-sdk 将 Facebook Credits 集成为一种支付方式。我设法让“earn_credits”和“buy_credits”工作。然而,第三个也是最重要的选项“buy_item”并没有出现在支付对话框中。不知何故,与 callback.php 的连接似乎是问题的原因。注意:我已经在我的应用程序设置中输入了回调 URL,所以我没有忘记这一点。我使用 Facebook Developer 文档中的示例 php 文件。
这是我的 as3 代码。
public static function buyItem ():void
{
var theAction:String = "buy_item";
var order_info:Object = { "item_id":"1a" };
var jOrder:String = JSON.encode(order_info);
var data:Object = {
action:theAction,
order_info:jOrder,
dev_purchase_params: {"oscif":true}
};
Facebook.ui("pay", data, purchaseCallback);
}
我认为 json 编码可能是问题所在,但我不确定。
我使用 Facebook 开发者文档(摘录)中的示例 php 文件:
<?php
$app_secret = '***********************';
// Validate request is from Facebook and parse contents for use.
$request = parse_signed_request($_POST['signed_request'], $app_secret);
// Get request type.
// Two types:
// 1. payments_get_items.
// 2. payments_status_update.
$request_type = $_POST['method'];
// Setup response.
$response = '';
if ($request_type == 'payments_get_items') {
// Get order info from Pay Dialog's order_info.
// Assumes order_info is a JSON encoded string.
$order_info = json_decode($request['credits']['order_info'], true);
// Get item id.
$item_id = $order_info['item_id'];
// Simulutates item lookup based on Pay Dialog's order_info.
if ($item_id == '1a') {
$item = array(
'title' => '100 some game cash',
'description' => 'Spend cash in some game.',
// Price must be denominated in credits.
'price' => 1,
'image_url' => '**********************/banner1.jpg',
);
// Construct response.
$response = array(
'content' => array(
0 => $item,
),
'method' => $request_type,
);
// Response must be JSON encoded.
$response = json_encode($response);
}
任何帮助,非常感谢。