Has anyone gotten "Accept Hosted" from Authorize.net to work?

I can successfully get the token using either Wix Fetch or the Authorize.net Node_Module but I cant get the redirect to work. I don’t get an error it just doesn’t work. Seems like that should be the easy part.
This is how they say it should work using a PHP/HTML example which I cannot seem to implement it in WIX/Corvid:

Here’s an example of the iframe which will contain the Accept Hosted page:

<iframe id="load_payment" class="embed-responsive-item" name="load_payment" width="100%" height="650px" frameborder="0" scrolling="no" hidden="true">
</iframe>

You could then load the Accept Hosted form into your iframe like this:

<form id="send_hptoken" action="https://test.authorize.net/payment/payment" method="post" target="load_payment" >
	<input type="hidden" name="token" value="<?php echo $hostedPaymentResponse->token ?>" />
</form>

Any help would be greatly appreciated.
Steve

I don’t see why this doesn’t work. It doesn’t trap an error but doesn’t work either.

const payUrl = 'https://test.authorize.net/payment/payment?token=' + objToken.token;
console.log("payUrl: " + payUrl);
try {
    wixLocation.to(payUrl);
}
catch(err) {
    console.log(err);
}

https://support.wix.com/en/article/authorizenet-moolah-no-longer-supported-as-a-payment-provider

I’m not sure that is relevant since I am not trying to set authorize.net up as a payment provider. I am trying to use their API/node.js module.