我可以从 Instamojo API成功获得付款回复,但我找不到任何提及 instrument_type 的文档。我想知道 CARD 以外的 instrument_types 。有什么选择可以找到它吗?
此外,我需要知道,如何通过 BHIM & 电子钱包选项?
请帮我解决这个问题。
感谢。
答案 0 :(得分:0)
尝试此功能从您的回复中提取乐器类型
public function check(){
try {
$response = $this->api->paymentRequestPaymentStatus('Payment_request_id', 'Payment_id');
dump($response);
dump($response['payment']['instrument_type']);
}
catch (Exception $e) {
print('Error: ' . $e->getMessage());
}
}