I have a PHP site that I want to know if its using SHA-512 or MD5. I think its authorizenet 1.8.6.2 for PHP SDK I'm using.
This is how I process a credit card transaction (keys changed to protect the innocent):
require 'includes/authorize/vendor/autoload.php'; use net\authorize\api\contract\v1 as AnetAPI; use net\authorize\api\controller as AnetController; $merchantAuthentication = new AnetAPI\MerchantAuthenticationType(); ... $merchantAuthentication->setName("***"); $merchantAuthentication->setTransactionKey("****");
The setName comes from out API Login ID: in the web admin Settings -> API Credentials & Keys page. eg. Settings page
Is this all I need to make sure if happening then? Or am I missing something?
01-27-2019 05:41 PM
01-27-2019 05:44 PM