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
Hi all,
I want to listen to messages sent to multiple accounts. The method below works but I'm not sure it's the right solution.
const ig = withRealtime(new IgApiClient()); const ig2 = withRealtime(new IgApiClient()); ig.realtime.on('message', (data) => console.log(data)); ig2.realtime.on('message', (data) => console.log(data));
What could be your solution for connecting to 10 separate accounts? How do I refactor this code?
The text was updated successfully, but these errors were encountered:
Hello meseven,
I have done the same thing for my platform. and this is the only solution i have found to be able to manage each account separately.
hope i helped
Sorry, something went wrong.
Do you have any update on this issues? How to listen multiple accounts?
No branches or pull requests
Hi all,
I want to listen to messages sent to multiple accounts. The method below works but I'm not sure it's the right solution.
What could be your solution for connecting to 10 separate accounts? How do I refactor this code?
The text was updated successfully, but these errors were encountered: