パブリッシャー実装ではないPubSubHubbubサーバーはJavaにありますか?
質問する
1527 次
1 に答える
-2
これをチェックしてください。PubSubHubBub 0.3 プロトコル用に Java で記述された単純なサブスクライバーの実装。
使用法:
Subscriber subscriber = new SubscriberImpl("subscriber-host",8888);
Subscription subscription = subscriber.subscribe(URI.create("http://feed-host/my-push-enabled-feed.xml"));
subscription.setNotificationCallback(new NotificationCallback()
{
@Override
public void handle(SyndFeed feed)
{
//TODO: Do something with the feed
}
} );
于 2012-10-04T18:41:19.577 に答える