Sending Google Talk and Facebook messages over R with XMPP protocol

I personally want to have an XMPP API for R so that after a lot of modeling my R process can notify me about Facebook or Google Talk.

Email may be the choice, but I think it will be more convenient to notify the user via an XMPP message in the future.

Is there any famous XMPP API for R?

+3


source to share


2 answers


I myself am writing a toy XMPP Client for R called RMessenger (project: https://github.com/wush978/RMessenger , package: https://dl.dropbox.com/u/11900271/Wush-R-pkg-src/ RMessenger_0.1.tar.gz ). The engine is a C library, libstrophe ( http://strophe.im/libstrophe/ ) and I am completing it with Rcpp. So far this works on my machine and server (like Ubuntu). I tried to move it to windows but couldn't. I am inexperienced to create an Rcpp package on Windows.



This package only sends a message to some XMPP services, including facebook and google talk. Maybe I'll break down its function like sending an attachment or change the engine to google Jingle ++ (after understanding the license issue).

+1


source


I posted a package R RMessenger

,, on CRAN, to send a message to Google Talk and Facebook via R with XMPP protocol.

If you find a bug or want some new features, please discuss with me https://github.com/wush978/RMessenger/issues .



thank

0


source







All Articles