This is the endpoint listener script:
URL: http://wwvr5.wwwebweavers.com/jomres/remote_plugins/jomres_gateway_authorize/notify.php
the endpoint script just does this:
$path=dirname(realpath(__FILE__));
$f=fopen($path.'/log.txt','a+');
fputs($f,print_r($_REQUEST,1));
fclose($f);
echo "OK";
die();
it gets the post data from auth.net and writes it to a file named log.txt which is empty after successful transactions on A.net:
http://wwvr5.wwwebweavers.com/jomres/remote_plugins/jomres_gateway_authorize/log.txt
We program in php. Our website is on:http://wwvr5.wwwebweavers.com/index.php?lang=en
07-11-2019 07:57 AM - edited 07-11-2019 08:09 AM
I copied the code from here:
https://developer.authorize.net/api/reference/#transaction-reporting-get-transaction-details
it gives this error.
07-12-2019 10:52 PM
If I remove the clientId then nothing else works.
07-13-2019 12:17 AM
07-15-2019 05:15 PM
I am now capturing the headers.
Extracting the transaction number and trying to do a details lookup to get the invoiceID that I sent when I created the web order.
With that invoice ID, I can complete the order.
however, when I get the transaction ID and do a transaction details lookup, it gives me this error.
Nowhere in my code am I using the clientId
07-16-2019 07:24 AM