Hi I’m trying to do something simple, which is just to connect to a phoenix server backend via its API pipeline (JSON) using not a js client, but a separate elixir process. I understand that if this process is going to talk websockets/phoenix channels, there is the PhoenixClient library that can be used, but I just need to talk standard HTTP, sending across JSON messages through POST/GET etc.
Is there a library that can do this? I think all I need to get is a handle on the connection, and I think the standard phoenix library should be able to do this but the only examples I can see of this is wrapped up in the PhoenixConnTest module, and I want to do this outside the context of a test.
Thanks! ![]()






















