I'm working on new website using Angular 6 and we need to include a payment webpage using Authorize.net. Is there an example on how to do this using "Accept Hosted" or "Accept.js"?
Or is there a better way to integrate Authorize.net into our new website?
Thanks in advance.
06-19-2018 02:12 PM
I haven't used Authorize's JS at all (and I wouldn't ever trust their code on my website), but I do know Angular. And my guess is that you'd need to write your own definition file (.d.ts) for the API you're using so that typescript doesn't complain about references you make to it. How you would then bundle Accept with your app is dependent on the build system you use. I use webpack and all the noise that comes with it, so that I'm a little less familiar with the angular way (after 1.x). But you can probably just refer to the API through a global var and include the accept.js as another script or whatever.
06-25-2018 08:06 AM