as3-sdk を使用して、Facebook クレジットを支払い方法として統合しようとしています。「earn_credits」と「buy_credits」が機能するようになりました。ただし、3 番目の最も重要なオプションである「buy_item」は、支払いダイアログを表示しません。どういうわけか、callback.php への接続が問題の原因のようです。注: アプリの設定でコールバック URL を入力したので、それを忘れていませんでした。Facebook 開発者ドキュメントのサンプル 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);
}
どんな助けでも、本当に感謝しています。