Where to see the channel name is matched
As the title describes, how can I check the channel name you are subscribing to in your component matches the one you are publishing to in your backend
subscribe method in your liveProvider implementation. liveProvider object, the subscribe method is used to subscribe to a Realtime channel. Refine subscribes to the related channels using this method in supported hooks to be aware of the data changes. liveProvider object:channel parameter in the subscribe method is the name of the channel you are subscribing to. You need to ensure that this channel name matches the one you are publishing to in your backend.subscribesubscribesubscribechannelconst liveProvider = {
subscribe: ({ channel, params: { ids }, types, callback }) => any,
unsubscribe: (subscription) => void,
publish?: (event) => void,
};