We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to verify that TurboStreams works... I'm having luck when I go direct to Rails from web browser, but with HAProxy having issues.
I wanted to test out connectivity using acli but always get a rejection:
acli
./acli -u http://localhost:3000/cable -c Turbo::StreamsChannel Connected to Action Cable at ws://localhost:3000/cable Subscription rejected
I'm guessing something about signatures. Anyway to avoid this?
The text was updated successfully, but these errors were encountered:
You need to provide a signed_stream_name parameter; currently, you don't have one, so the subscription attempt is rejected.
signed_stream_name
It should be something like:
./acli -u http://localhost:3000/cable \ -c Turbo::StreamsChannel \ --channel-params="signed_stream_name:${STREAM}" \
Where STREAM is a signed stream name (you can obtain it form the <turbo-cable-stream-source> HTML element).
STREAM
<turbo-cable-stream-source>
Sorry, something went wrong.
No branches or pull requests
I am trying to verify that TurboStreams works... I'm having luck when I go direct to Rails from web browser, but with HAProxy having issues.
I wanted to test out connectivity using
acli
but always get a rejection:I'm guessing something about signatures. Anyway to avoid this?
The text was updated successfully, but these errors were encountered: