Omise PHPは REFすべての料金をゲット。omise PHPすべての料金
$response = OmiseCharge::retrieve('',OMISE_PUBLIC_KEY,OMISE_SECRET_KEY);
これもまた最初の20レコードです。
しかし、私のの要件は、日付パラメータですべての料金をフェッチします。
$param = array(
'from' => '2014-10-20 00:00:00',
'to' => '2014-09-25 00:00:00'
);
$response = OmiseCharge::retrieve($param);
これはエラーです。
Fatal error: Uncaught exception 'OmiseNotFoundException' with message 'charge Array was not found'
私が間違っていること。
ありがとうございました。 –