In Brief:
trying to create subscription. Given all details, and worked my way through other response errors with no problem. However, now, I either get an empty (false) response, or I see an error code E000007
I know the E000007 code has something to deal with either invalid credentials, or using the wrong developement or production host.
I have checked the credentials and they should be okay, and I have switched around playing with every possibility of dev/prod hosts. still not working.
Finally, the distinguishing key, is if i use https://apit.authorize.net then the response is empty, if i just use api.authorize.net, i get the E000007 error.
Any help is greatly appreciated!
Thank you.
Solved! Go to Solution.
01-30-2014 11:44 AM - edited 01-30-2014 11:52 AM
Alright, I made a new test account myself, and it ended up working. So I guess I had the wrong credentials or something.
HOWEVER
/// THIS DOES NOT WORK
$host = "https://apitest.authorize.net";
$path = "/xml/v1/request.api";
But this works
$host = "apitest.authorize.net";
$path = "/xml/v1/request.api";
using php, authnetfunction.php from example. sent using:
send_request_via_curl($host,$path,$content);
Just thought I would say something just in case. But thank you for the quick response! Sorry to trouble you.
01-30-2014 12:43 PM
Just try it on my test account and it work fine on https://apitest.authorize.net/soap/v1/Service.asmx
01-30-2014 12:29 PM
Alright, I made a new test account myself, and it ended up working. So I guess I had the wrong credentials or something.
HOWEVER
/// THIS DOES NOT WORK
$host = "https://apitest.authorize.net";
$path = "/xml/v1/request.api";
But this works
$host = "apitest.authorize.net";
$path = "/xml/v1/request.api";
using php, authnetfunction.php from example. sent using:
send_request_via_curl($host,$path,$content);
Just thought I would say something just in case. But thank you for the quick response! Sorry to trouble you.
01-30-2014 12:43 PM