I am implementing stripe payment gateway in cakephp project.
Below is the code which i have tried :
require_once('stripelib/vendor/autoload.php');
\Stripe\Stripe::setApiKey('sk_test_xxxxxxxxxxxxxxxxxxxxxx');
try {
$charge = \Stripe\Charge::create(array(
"amount" => $data['total'] * 100,
"currency" => "usd",
"card" => $token,
"description" => "Charge for Facebook Login code."
));
// pr($charge);exit;
}
Here problem is merchant is not getting amount and i got below error :
{"error":"No such token: card_xxxxxxxxxxxxxxxxxxxxxx(invalid_request_error)"}
Any suggestion? Thank you.