simple-xmpp / node-simple-xmpp

Simple High Level NodeJS XMPP Client
301 stars 90 forks source link

can't see invitation #35

Open sundaywork opened 11 years ago

sundaywork commented 11 years ago

The bot is not able to see invitation from new friends. Is there anyone else having the same issue? I've tried to put the bot account in either gtalk or hangout mode. Neither works.

sundaywork commented 11 years ago

xmpp.on('subscribe', function(from) {

    console.log("invited by" + from);

xmpp.acceptSubscription(from);

}); there is no console message showing this event was triggered. help please!

Mo33n commented 9 years ago

Kindly use the following code to track down the presence stanza that the bot is receiving. and copy paste that here.

xmpp.on('stanza', function(stanza) { console.log(stanza); });

Thanks