Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Some client subscribe a node, I want to know how to get the subscriber.

Is there some plugins in the Openfire can do this?

share|improve this question
Can you explain a little more exactly what you want? You mentioned a plugin, so that would assume you are looking for this information on the server. Are you looking to OK pending subscribers ...? – Robin Sep 15 '10 at 14:00

1 Answer

You will need to build the smack version from the repo to get PubSub support. See my blog for details. Once you have build smack, this is how you retrieve the list of subscribers

//Assume pubsub jid is pubsub.myserver
PubSubManager mgr = new PubSubManager(conn, "pubsub.myserver");

//Assume we are dealing with leafnode
LeafNode node = (LeafNode)mgr.getNode("mynode");

List<Subscriptions> subscriptions = node.getSubscriptions();
share|improve this answer
Nightly builds are now available at igniterealtime.org/downloads/nightly_smack.jsp – Robin Sep 15 '10 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.