We are currently in the process of ugrading the depricated services we are using and I have gotten to the point where I am trying to upgrade our usage of the hosted CIM forms. We have a javascript file that is managing the Authorize.net popups which is setting a forms action using the following code:
if (AuthorizeNetPopup.options.useTestEnvironment) { form.action = "https://test.authorize.net/profile/" + opt.action; } else { form.action = "https://secure2.authorize.net/profile/" + opt.action; }
From what I can tell, the test and production URL's are depricated URL's and we need to change them but I'm having a difficult time trying to find the upgrade path for these lines of code. Do I just need to change the URL's or is it going to be a larger change? If I just need to update the URL"s, what do I need to update them to?
Thanks!
โ01-04-2019 02:15 PM
Here are the new URLs
Current Accept Customer URLs
https://accept.authorize.net/customer/_formName_ (for Production)
https://test.authorize.net/customer/_formName_ (for Sandbox)
Deprecated Hosted CIM Form URLs
https://secure.authorize.net/profile/_formName_ (for Production)
https://test.authorize.net/profile/_formName_ (for Sandbox)
โ01-05-2019 09:14 PM