Authenticating Payments via Netcetera Through HyperSwitch SDK
How to trigger redirection less external 3DS authentication in HyperSwitch SDK ?
Please specify the payment needs to externally authenticated via Netcetera by passing the below field
in create payments call. You can read more about it here.
"request_external_three_ds_authentication": true
Pass your Netcetera SDK API key to HyperSwitch SDK like below.
configuration: Configuration(netceteraSDKApiKey: "<YOUR_NETCETERA_API_KEY>")
Make the Hyperswitch Payments - External 3DS Authentication request. Take the value of the field acs_signed_content
, then decrypt it using JWT.io. Under the decrypted 'x5c' header you will get your root certificate.
Please note the above step is not required for Production environment.
Providing the root certificate to HyperSwitch SDK
Android
Put the obtained certificate in assets directory in your android project.
iOS
Put the obtained certificate in the root directory in your iOS project.
Last updated
Was this helpful?