Questions tagged [websub]

WebSub - previously PubSubHubbub - is a HTTP-based PubSub protocol.

Spec: https://www.w3.org/TR/websub/

124 questions
1
vote
1 answer

PubSubHubbub error to confirm subscription

I use this code:
user370306
1
vote
4 answers

How to use Superfeedr with PHP

I'm working on a project that parse a lot of RSS feeds, and I just discover Superfeedr it has a poor documentation in how to use their PubSubHubbub API with PHP. Please can anyone give me a good tutorial or an example how to use it to subscribe to…
aniss.bouraba
  • 443
  • 9
  • 18
1
vote
1 answer

Delete or update payload item in pubsub

I have one problem, I need to delete payload item from pubsubitem table from database programmatically according to jid.I'm using openfire and smack api. It work like everytime when i call leaf.send or publish everytime new entry is added in…
Nitin Sood
  • 53
  • 8
1
vote
1 answer

What is an acceptable poll rate for an rss feed?

I'm currently polling the youtube rss feed servers about 3 times per second (multiple channels getting the feed every 3 seconds each). Is this too much and will getting it this often result in getting updates slower since it's going to start caching…
WinterDev
  • 348
  • 1
  • 11
1
vote
0 answers

How do I add the YouTube notifications to my server and iOS application?

It's been 3 days that I'm stuck on this problem. I am developing an iOS application that will show a YouTube channel with its video. I would like the application to send push notifications to the user whenever there is a new video uploaded on…
1
vote
1 answer

How to implement PubSubHubBub Protocol in php

I was implementing PubSubHubBub in kohana project. This is my subscribing code: public function action_curl_home() { $secret = hash('sha1', uniqid(rand(), true)); $post_fields = array("hub.callback" => "my callback function", …
Sivabalan
  • 971
  • 2
  • 18
  • 43
1
vote
1 answer

Flickr API: How to (successfully) get push notification for new photos(private) with specific tags?

I am using this php library for flickr. I have added following flickr push_subscription function: function push_subscribe ($topic = NULL, $callback = NULL, $verify = NULL, $verify_token = NULL, $lease_seconds = NULL, $tags = NULL) { return…
Khurshid Alam
  • 209
  • 1
  • 3
  • 10
1
vote
1 answer

Adding pubsubhubbub link tag to Atom feed

According to Google the link tag containing the URL to the pubsubhubbub hub (This is a really terrible name) needs to go under the Atom entry element like so:
Muhammad Rehan Saeed
  • 35,627
  • 39
  • 202
  • 311
1
vote
1 answer

pubsubhubbub categorise the push notification

I have subscribed to 10 RSS via pubsubhubbub all the links are of different category i.e Technology, Politics etc whenever the I get push notification pubsubhubbub is it possible to know from which RSS the news is been published so I can save it…
Ironman
  • 173
  • 1
  • 3
  • 10
1
vote
2 answers

Anyone know of an Erlang pubsubhubbub subscriber client?

Anyone know of an Erlang pubsubhubbub subscriber client?
user319045
  • 665
  • 3
  • 7
  • 12
1
vote
2 answers

Instagram: Real time subscription with R and httr

I'm trying to create a real time subscription on the Instagram API using R and the httr package but I'm struggling with the PubSubHubbub authentication. Here's the code I use: require(httr) r = POST(url =…
Stephane
  • 11
  • 1
1
vote
1 answer

Handling PubSubHubbub Subscriber POST notifications into Custom Post Type WordPress

I am trying to implement the PubSubHubbub Subscriber protocol with WordPress where each of the feed Atom entries will be saved into a Custom Post Type for the client and many of the XML fields saved into Custom Fields. The problem that has been…
vitorf7
  • 85
  • 1
  • 10
1
vote
1 answer

Implementing subscriber Pubsubhubbub in python

I have a bunch of Google alerts set up as rss feeds that update in real time. What I want is to be able to store the new data the rss feed is sending out in a database. After looking around I found Google and Superfeedr both offer hubs that do most…
user1861156
  • 169
  • 1
  • 2
  • 14
1
vote
1 answer

historical data modelling literature, methods and techniques

Last year we launched http://tweetMp.org.au - a site dedicated to Australian politics and twitter. Late last year our politician schema needed to be adjusted because some politicians retired and new politicians came in. Changing our db required…
CVertex
  • 17,997
  • 28
  • 94
  • 124
1
vote
1 answer

HTTP request during ActiveRecord creation

I am trying to subscribe to a pubsubhubbub (pshb) feed on superfeedr. The way the pshb protocol works is you Send POST to the hub requesting to subscribe to a feed and provide a callback hub sends a GET to your callback to verifying your intent to…
gage
  • 43
  • 6
1 2 3
8 9