Questions tagged [superfeedr]

Superfeedr is a feed API service which helps services publish and consume RSS feeds.

Superfeedr is a feed API service that helps make the web realtime by pushing RSS feeds from publishers to subscribers. The service offers 2 APIs: and XMPP and is able to push normalized RSS/Atom, but also convert them to JSON.

26 questions
3
votes
1 answer

How to subscribe to real-time XMPP RSS feeds with Superfeedr

I'm trying to subscribe to feeds with Superfeedr, and I've got a python wrapper for XMPP up and running, and I'm receiving the dummy.xml successfully. I don't quite understand how to add more sources, however? I've tried adding a few…
knutole
  • 1,709
  • 2
  • 22
  • 41
2
votes
1 answer

Unable to receive RSS updates to my webhook setup using Django. Replay option sends empty POST and GET data

I am trying to setup webhooks for Django and use Superfeedr.com to receive webhooks. I am using the RSS feed link they provide for testing: http://push-pub.appspot.com/. You can update the website in realtime to test your webhook. When I update the…
juju
  • 884
  • 1
  • 9
  • 31
2
votes
0 answers

How can I use Superfeedr to notify my android app about an update from a Blogspot blog?

I have written a feed reader in android which uses an RSS feed from a blog on blogspot to display posts to users. I want the app to get a notification whenever the blog is updated. I found out about Superfeedr and PubSubHubbub and I've been…
KayO
  • 450
  • 7
  • 16
2
votes
1 answer

Confused about using Superfeedr to subscribe and download RSS feeds using XMPP or Pubsubhubbub

I am trying to use Python 2.7 to subscribe to RSS feeds using Superfeedr. After reading Superfeedr documentation my understanding is that a user can subscribe using XMPP or Pubsubhubbub. I have previously worked with REST apis however I am very…
Sofia
  • 35
  • 5
2
votes
2 answers

XMPP support in Google App Engine

I am in the process of developing a lightweight Android application that receives push notifications when a new entry is made to an RSS Feed. The backend resides on the Google App Engine. I originally started using Cron to poll the Feed every 30…
user1154644
  • 4,491
  • 16
  • 59
  • 102
1
vote
2 answers

How to create a database of items from RSS feeds for analysis (not for an application), updated as RSS items published?

I need to create a database of items from rss feeds and I'd like it to be updated asynchronously (via push ala AJAX) rather than pull (ala scraping RSS via python/magpie in php). The database will be used for analysis not for an application, so it…
Solomon
  • 946
  • 14
  • 18
1
vote
1 answer

How to use EventMachine(superfeeder-ruby gem) within a Rails controller?

thank you for taking a look at this. I am new to rails, unfortunately. I currently have to implement an endpoint that Superfeedr can push updates to, but that endpoint has to be in a rails controller. Initially it seemed to me that this should be a…
LRH
  • 53
  • 3
1
vote
0 answers

Is there any way to generate links with rel="hub" with the feedgen package in Python?

I generate a RSS feed with the Python package feedgen and I am now trying to implement the PubSubHubbub protocol. From what I understand here https://indieweb.org/How_to_publish_and_consume_WebSub I need to generate 2 HTML tags: one with rel…
Loan75
  • 27
  • 4
1
vote
0 answers

Superfeedr response not working in laravel

I want to retrieve feeds from superfeedr.com using PubSubHubbub api, but my callback response is not working. I am unable to reach on my callback. Here is my code class Superfeedr { private $topic; private $callback; private $hub =…
nitin7805
  • 203
  • 2
  • 13
1
vote
1 answer

Superfeedr won't reach Parse.com callback URL

My iOS app sends RSS subscription requests to superfeedr like so: func subscribe(feed: String) { let parameters = ["hub.mode" : "subscribe", "hub.topic" : feed, "format" : "json" , "hub.callback" :…
user2747220
  • 863
  • 3
  • 12
  • 31
1
vote
0 answers

How to integrate Parse.com with Superfeedr

I want to integrate Parse.com with Superfeedr website. I am building RSS reader where I want Superfeedr to notify Parse.com when there is a new RSS FEED. it a PUSH mechanism instead of traditional way to pull RSS feeds every specified period of…
Hisham Bakr
  • 559
  • 4
  • 13
1
vote
1 answer

Handling duplicate notifications from superfeedr

I have a subscription to an RSS feed via SuperFeedr, and have noticed a lot of duplicate notifications lately. I've double checked my subscriptions via the web application, but I only see 1. I also looked into making sure that I am returning the…
user1154644
  • 4,491
  • 16
  • 59
  • 102
1
vote
2 answers

Make POST requests from Superfeedr on localhost

I want to subscribe to a feed using Supefeedr. I have server running on my laptop. So, I just want to know how can I make Superfeedr to POST HTTP requests on my local server using a webhook. I am using Java as my base language. I just want to test…
user3740148
  • 117
  • 1
  • 7
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
vote
0 answers

Rack-superfeedr: Authenticating web-hook calls from hub

This question refers to Superfeedr's official rack-superfeedr library. As SuperFeedr supports PubSubHubbub's challenge-response protocol, I'm wondering if the rack-superfeedr library provides this automatically. Looking at the code, I see…
mahemoff
  • 44,526
  • 36
  • 160
  • 222
1
2