2

I have integrated instamojo payment gateway in Codeigniter. I want to enable sandbox mode in instamojo payment gateway, i can not see any option to change mode to sandbox or test mode.Can anyone tell me how to change that.
Thank You in Advance.

Naim Malek
  • 1,186
  • 1
  • 11
  • 21

1 Answers1

9

The Instamojo class initializer accepts a third argument that can be used to specify the API URL, it defaults to: https://www.instamojo.com/api/1.1/

Hence for the test environment you can do:

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

Note that for this to work you'll have to create an account on https://test.instamojo.com first and also make sure you're using the credentials from https://test.instamojo.com/developers/.

Ashwini Chaudhary
  • 244,495
  • 58
  • 464
  • 504