Welcome Guest, Not a member yet? Register   Sign In
Loading Instamojo Payment gateway SDK giving error
#3

(This post was last modified: 09-29-2020, 10:42 PM by tysonchamp.)

(09-29-2020, 03:50 PM)InsiteFX Wrote:
PHP Code:
$authType "app/user" /**Depend on app or user based authentication**/ 

It's expecting a string with a $ not 'app'

PHP Code:
$api Instamojo\Instamojo::init($authType,[ 

pass it a string like it is showing in the documentation.


Still it's giving same error.. I feel the issue is here: Instamojo::init

Solved the Issue

removing new will solve the issue
wrong code:
Code:
$api = new \Instamojo\Instamojo::init('app', [
            "client_id" =>  'test_ssTbcIWGqmAQYEQUSu8tqyna6msQsQB4dEu',
            "client_secret" => 'test_Y7uuS7kjPgtK4Bi3R0RdWRZ0k9Hq67bhoeYw6Jsd2ZAYXNwUPNQo9vlGgsDAMoz1YjWvjDOcJdDlHIYGMJMFuo8XOsb9QfZH7fzNVvoG1EkGA4uG1GeLxjCcP8v'
        ], true); 

correct code:
Code:
$api = \Instamojo\Instamojo::init('app', [
            "client_id" =>  'test_ssTbcIWGqmAQYEQUSu8tqyna6msQsQB4dEu',
            "client_secret" => 'test_Y7uuS7kjPgtK4Bi3R0RdWRZ0k9Hq67bhoeYw6Jsd2ZAYXNwUPNQo9vlGgsDAMoz1YjWvjDOcJdDlHIYGMJMFuo8XOsb9QfZH7fzNVvoG1EkGA4uG1GeLxjCcP8v'
        ], true); 
Reply


Messages In This Thread
RE: Loading Instamojo Payment gateway SDK giving error - by tysonchamp - 09-29-2020, 10:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB