Hi, does anybody have experience with implementing GoPay in a Phoenix LiveView? Here are docs for their inline payment gate way GoPay REST API Any experienced Elixir/Phoenix users who could skim through the page and let me know whether it will be possible to do in LiveViews or only on dead view pages in Phoenix?

You can make HTTP requests whether or not you use a "dead" view or a regular LiveView. Doesn't make a difference

So, it shouldn't be a problem? They say you have to have https (SSL certificate) which I have, but I am not sure how the web socket thing of liveview will mess with it and the response after payment when returning back to my website after a successful payment.
I am using nginx for proxy and certificate handling.
Here is their demo payment gateway: GoShop
Try with some fake email, like info@example.com and after clicking on Continue it should open in an overview layer.
The question is whether the integration will be possible on Phoenix LiveView pages or there is some catch.