ionic framework - cordova - How to integrate CCAvenue to Ionic2 -


i new in ionic2 , angular2. in application need payment gateway of ccavenue merchant server. please give me steps issue.

first of all, need set ccavenue account. go sign page, choose startup pro plan , fill out details. on creating account, recieve e-mail on entered e-mail address verify e-mail. once verify e-mail, recieve activation e-mail give ccavenue account login id , required set password. set account password amd make sure read e-mails receive thoroughly. login ccavenue m.a.r.s panel (dashboard). in settings > api keys tab , merchant id , access code working key. working key named encryption key in dashboard provided ccavenue. copy these keys safe place later use. secure data transmitted mobile while initiating transaction, ccavenue has implemented time-based rsa key pair value needs fetched uniquely every transaction. these files should uploaded on web server. download these files, login ccavenue dashboard. go resources > mobile integration kit. further click on rsa & response handling. download php files here. can use jsp , asp.net files make sure web server supports these functionalities before use them. php supported every web server using php. find 4 files on unzipping php download. these are: cacert.pem, ccavresponsehandler.php, crypto.php , getrsa.php. find 4 files on unzipping php download. these are: cacert.pem, ccavresponsehandler.php, crypto.php , getrsa.php. follow following steps:

(a) upload these 4 files on web server.

(b) in getrsa.php file, put access code in 4th line this: 'access_code'=>"xxxxxxxxxxxxxxxxxx",

(c) in 20th line, need put path have uploaded cacert.pem file. example: curl_setopt($ch, curlopt_cainfo, $_server['document_root'].'/rsa/cacert.pem');

(d) in ccavresponsehandler.php file, put working key in 6th line this: $workingkey='105b05a21ad102eba62c051720cc3fa2'; that's server part. download implementation kit ccavenue account or may refer following link android implementation


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -