I'm trying to implement the Wampcra method following this example.
I'm using wampy.js on the client side.
Problem is, the server never proceeds to send the Challenge after receiving the Hello message from the client, and returns the following array though socket:
[3,{},"thruway.error.unknown"]
Here is my WebSocket server logs:
it turns out I'm using php7, and class Thruway\Authentication\WampCraAuthProvider is using deprecated function create_random_iv().
Updating to version 0.5 of voryx/Thruway solved this.
Hi there,
I'm trying to implement the Wampcra method following this example. I'm using wampy.js on the client side. Problem is, the server never proceeds to send the Challenge after receiving the Hello message from the client, and returns the following array though socket:
[3,{},"thruway.error.unknown"]
Here is my WebSocket server logs:Do you have any idea about what could be going on?