Owen Pearson
Owen Pearson
Hey @nandorojo, thanks for reaching out! Your usage of `authCallback` looks correct to me, and calling the provided callback with an error or the 'no auth' string will never throw...
Hey @nandorojo, thanks for providing the code! It's hard to say without seeing a full repro or logs but I'm relatively certain that calling `useChannel` will be what causes the...
oh interesting, what were the warnings? creating the channel instance doesn't do any network i/o and won't throw an error or anything so avoiding that shouldn't change the behaviour
Hey @JohnGemstone, thanks for reporting this! I've reproduced the issue using the ably-nextjs-fundamentals-kit project and it appears to only happen when using pnpm, if it's feasible for you, you should...
Hey @ahadg, this appears to be an error with encoding the `clientId` option. Are you able to tell us more about: 1. which web browser you are using? the version...
Hey @Foenixxx, could you give us some more information about what you're doing to get this error message? Based on the error message it looks like you're trying to use...
Currently this should suffice as a workaround: ```typescript export const config = { runtime: 'edge', unstable_allowDynamic: [ '/node_modules/ably/**', ] }; ```
Hey @step135, thanks for reaching out! You can [observe connection state](https://ably.com/docs/realtime/connection?lang=javascript#:~:text=Listening%20for%20state%20changes) by using the `client.connection` event emitter interface: ```typescript // The listener gets called every time the client connection state...
Hey @mandymozart, thanks for reaching out! You can use channel qualifier syntax to enable rewind on any channel, for example: ```ts useChannel("[?rewind=100]your-channel-name") ``` If you need to use the channel...
Hey @TranquilMarmot, thanks for reaching out! > If I'm doing [token authentication](https://ably.com/docs/auth/token), wouldn't I ONLY ever want to create a client on the server? Otherwise, I'd be passing the API...