Mocking HTTPS and URL
Unanswered
David L. Bowman posted this in #help-forum
Original message was deleted.
21 Replies
Original message was deleted
so essentially you need an HTTPS endpoint that tunnels to your
localhost
dev server?oh hey david didn't notice it was you lol
is it for webhook notifications? or something?
also what test are you trying to do with authorize.net?
oh its just a redirect
Original message was deleted
Havana
What about using ngrok?
It will port forward from 80 or 443 (not sure), to the local 3000
The only issue is that the generated link will always change when you restart the ngrok
mm yeah that could work
Havana
Thats the purpose of port forwarding
Forwarding from an external port that somebody wants to access, to a local port
@Havana The only issue is that the generated link will always change when you restart the ngrok
Havana
So if you use it anywhere, you will always have to change it, kind of annoying
Or you could buy VPS/VDS, and then use nginx
decent enough for testing
@iyxan23 decent enough for testing
Havana
Sure
since it's for a redirect, booting up a simple github pages with just
<script>window.href = "localhost:3000/";</script>
might work lolHavana
ofc
just change the link to the ngrok link
That's how I tested, it works both in dev and prod modes
Original message was deleted
Havana
Good job
Glad I could help