Stripe の統合に取り組んでいますが、PHP API から得られる実際の応答に困惑しています。API リファレンスは正確であり、各メソッドで示されているように、応答は JSON 文字列になると信じていました。私はすぐに重要な違いを発見しました。ほとんどの場合、id フィールドは JSON 応答にありません。また、応答は文字列、オブジェクト、およびおそらく他の構造のように見えますが、すべて同時にです。
これが私のデバッグコードです。最新の Stripe PHP ライブラリ、バージョン 1.7.15 を使用しています。
function var_dump_ret($mixed=null)
{
ob_start();
var_dump($mixed);
$content=ob_get_contents();
ob_end_clean();
return($content);
}
$token=$_POST['stripeToken'];
$customer=Stripe_Customer::create(array(
"card"=>$token,
"plan"=>"agency")
);
$custVarDump=var_dump_ret($customer);
$cDecoded=json_decode($customer);
$Debug="Invidual attributes of JSON decoded customer object:"._EOL;
$Debug.="object:".$cDecoded->object._EOL;
$Debug.="created:".$cDecoded->created._EOL;
$Debug.="id:".$cDecoded->id._EOL;
$Debug.="livemode:".$cDecoded->livemode._EOL;
$Debug.="description:".$cDecoded->description._EOL;
$Debug.="active_card.object:".$cDecoded->active_card->object._EOL;
$Debug.="active_card.last4:".$cDecoded->active_card->last4._EOL;
$Debug.="active_card.type:".$cDecoded->active_card->type._EOL;
$Debug.="active_card.exp_month:".$cDecoded->active_card->exp_month._EOL;
$Debug.="active_card.exp_year:".$cDecoded->active_card->exp_year._EOL;
$Debug.="active_card.fingerprint:".$cDecoded->active_card->fingerprint._EOL;
$Debug.="active_card.country:".$cDecoded->active_card->country._EOL;
$Debug.="active_card.name:".$cDecoded->active_card->name._EOL;
$Debug.="active_card.address_line1:".$cDecoded->active_card->address_line1._EOL;
$Debug.="active_card.address_line2:".$cDecoded->active_card->address_line2._EOL;
$Debug.="active_card.address_city:".$cDecoded->active_card->address_city._EOL;
$Debug.="active_card.address_state:".$cDecoded->active_card->address_state._EOL;
$Debug.="active_card.address_zip:".$cDecoded->active_card->address_zip._EOL;
$Debug.="active_card.address_country:".$cDecoded->active_card->address_country._EOL;
$Debug.="active_card.cvc_check:".$cDecoded->active_card->cvc_check._EOL;
$Debug.="active_card.address_line1_check:".$cDecoded->active_card->address_line1_check._EOL;
$Debug.="active_card.address_zip_check:".$cDecoded->active_card->address_zip_check._EOL;
$Debug.="email:".$cDecoded->email._EOL;
$Debug.="delinquent:".$cDecoded->delinquent._EOL;
//$Debug.="subscription:".$cDecoded->subscription._EOL;
$Debug.="discount:".$cDecoded->discount._EOL;
$Debug.="account_balance:".$cDecoded->account_balance._EOL;
$Debug.="unaltered response from Stripe_Customer::create:"._EOL.$customer._EOL.
"var dump of response:"._EOL.$custVarDump._EOL.
"print_r of json_decode of response:"._EOL.print_r($cDecoded,true)._EOL;
file_put_contents(_LOGFILE,$Debug,FILE_APPEND);
以下は、JSON でデコードされた顧客オブジェクトの個々の属性のデバッグ ファイルの内容です。実行されると、コードは通知を投稿しました。
Notice: 未定義のプロパティ: stdClass::$id の strip/subscription.php 行 51
また、stdClass に関する致命的なエラーのため、デバッグ文字列に「サブスクリプション」を追加した行をコメントアウトする必要があったことにも注意してください。
object:customer
created:1365951909
id:
livemode:
description:
active_card.object:card
active_card.last4:4242
active_card.type:Visa
active_card.exp_month:7
active_card.exp_year:2013
active_card.fingerprint:WTXPLgKDCXyp9xpD
active_card.country:US
active_card.name:charlie
active_card.address_line1:
active_card.address_line2:
active_card.address_city:
active_card.address_state:
active_card.address_zip:
active_card.address_country:
active_card.cvc_check:pass
active_card.address_line1_check:
active_card.address_zip_check:
email:
delinquent:
discount:
account_balance:0
最も顕著なのは顧客 ID です。JSON 応答には存在しません。ただし、一部の Stripe サンプル プログラムで見られるように、$customer->id を使用してアクセスできます。さらに、var_dump の出力は、理解できない構造にさらに多くの属性が存在することを示しています。デバッグ ファイル全体はhttp://www.helioza.com/stripe/debug.txtにあります。顧客の作成方法のみを示しましたが、請求書で同様の問題が発生しており、Stripe_Invoice::all または Stripe_Invoice::upcoming 応答のどこにも請求書 ID が見つかりません。
質問
1) Stripe_Customer::create によって返される値が同時に文字列とオブジェクトの両方になるにはどうすればよいですか?
2) 各属性へのアクセス方法など、API メソッドの戻り値について説明しているドキュメントはどこにありますか?