如何启用 instamojo 沙箱(测试模式)模式

How to enable instamojo sandbox (test mode) Mode

我已经在 Codeigniter 中集成了 instamojo 支付网关。我想在 instamojo 支付网关中启用沙盒模式,我看不到任何将模式更改为沙盒或测试的选项 mode.Can 谁能告诉我如何更改它。
先感谢您。

Instamojo class 初始化器接受第三个参数,可用于指定 API URL,它默认为:https://www.instamojo.com/api/1.1/

因此对于测试环境你可以这样做:

$api = new Instamojo\Instamojo(
           '[API_KEY]',
           '[AUTH_TOKEN]',
           'https://test.instamojo.com/api/1.1/');

请注意,要使其正常工作,您必须在 https://test.instamojo.com first and also make sure you're using the credentials from https://test.instamojo.com/developers/ 上创建一个帐户。