0

ユーザーの支払いトランザクションを取得しようとすると、常にエラーが発生します。

{
  "error": {
    "message": "An unexpected error has occurred. Please retry your request later.", 
    "type": "OAuthException", 
    "code": 2
  }
}

私はいくつかのアプローチを試しました:

// approach 1
$response = $app['facebook']->api('/'.$app['user']['fbUserID'].'/payment_transactions', 'GET', [
    //'request_id' => $order['requestID'],
    'access_token' => $app['fb.app_id'].'|'.$app['fb.app_secret']
]);

// approach 2
$url = 'https://graph.facebook.com/'.$app['user']['fbUserID'].'/payment_transactions?fields=id&access_token='.$app['fb.app_id'].'|'.$app['fb.app_secret'];

$ch = curl_init();
$options = [
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => 1,
    CURLOPT_CONNECTTIMEOUT => 10,
    CURLOPT_TIMEOUT => 60,
    CURLOPT_HTTPHEADER => array('Expect:'),
    CURLOPT_CAINFO => DIR.'/vendor/facebook/php-sdk/src/fb_ca_chain_bundle.crt'
];
curl_setopt_array($ch, $options);

$result = curl_exec($ch);

curl_close($ch);

// approach 3
// like 2 but with a fresh access token
$appAccessToken = explode('=', file_get_contents('https://graph.facebook.com/oauth/access_token?client_id='.$app['fb.app_id'].'&client_secret='.$app['fb.app_secret'].'&grant_type=client_credentials'))[1];

Graph API Explorer でも、このエラーが発生します。コマンドラインを使用する場合にのみ機能します:

$ curl 'https://graph.facebook.com/........./payment_transactions?access_token=.......|.........'

ユーザーは、支払いテスターでもあり、テスト購入に成功したテスト ユーザーです。現地通貨支払いの重大な変更は無効になっています。

私は何を間違っていますか?

4

1 に答える 1