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...
View ArticleRack-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...
View ArticleHow To Use Superfeedr in a iPhone App?
I have some data that comes in the form of a RSS feed that I need to deliver to the user as soon as possible (this could potentially save lives). I found SuperFeedr and I want to use it to deliver...
View ArticleHTTP request during ActiveRecord creation
I am trying to subscribe to a pubsubhubbub (pshb) feed on superfeedr. The way the pshb protocol works isyou Send POST to the hub requesting to subscribe to a feed and provide a callbackhub sends a GET...
View ArticlePython and Visual Studio needed to install a Node.js module (Superfeedr...
I try to install a module to interract with Superfeedr's XMPP API in the Node.js. As explained here (https://github.com/superfeedr/superfeedr-node), this is what I do in Node.js:npm install...
View ArticleMake 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...
View ArticleXMPP 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...
View ArticleWhat should be written in callback file of Superfeedr?
I need to generate RSS feed and get title and urls of the posts and so on. I decided to use Superfeedr for it. So in this situation, I'm a subscriber in Superfeedr. There is callback (the subscriber...
View ArticleCan't get Superfeedr callback response in CakePHP
I already added this URL to my subscribers list: http://push-pub.appspot.com/BTW, I also setting well the callback URL, like: http://online-domain.com/data/forwardMy controller code:public function...
View ArticleHandling 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...
View ArticleHow 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...
View ArticleConfused about using Superfeedr to subscribe and download RSS feeds using...
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...
View ArticleSuperFeedr making request on EC2 private IP
I am getting these in my Apache Access logip-XXX-XXX-XXX-XXX.ec2.internal:80 198.58.103.115 - - [19/Nov/2015:14:39:37 +0530] "GET /feed HTTP/1.1" 302 595 "-""Superfeedr bot/2.0 http://superfeedr.com -...
View ArticleSuperfeedr 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" :...
View ArticleHow can I use Superfeedr to notify my android app about an update from a...
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...
View ArticleSubscribe using Superfeedr PubSubHubbub generating error hub.topic not found
I want to integrate Superfeedr API using PubSubHubbub in PHP. I am following this and my code is:<?php require_once('Superfeedr.class.php') $superfeedr = new...
View ArticleSuperfeedr 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;...
View ArticleHow 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,...
View ArticleHow can I add a link tag to the atom.builder feed generator?
In rails 3.0.9 (and maybe earlier) this code no longer works://feed.atom.builderatom_feed :language => 'en-US' do |feed| feed.title @title feed.updated @updated feed.link('href' =>...
View ArticleRemove expired data from Superfeedr
We use Superfeedr to load current internal job postings from our cloud recruitment software (Newton). It was just brought to my attention yesterday that positions that are no longer active are still...
View ArticleRetrieving Superfeedr aggregated feeds to the node library
I’ve successfully created aggregated feeds using the hub.callback mechanism as described in your blog (https://blog.superfeedr.com/combining-feeds/).However, your NodeJS library doesn’t describe how to...
View ArticleHow to create a database of items from RSS feeds for analysis (not for an...
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...
View ArticleUnable to receive RSS updates to my webhook setup using Django. Replay option...
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...
View ArticleHow can I save a Superfeedr feed to a database?
I want to subscribe to several RSS feeds at once, and save the contents to a database. I have a Superfeedr account, so I can subscribe to the feeds that way, but I've read the Superfeedr docs and I...
View ArticlePubsubhubbub library for NodeJs
I have a system where various rss feeds are added. I want to follow the content and be notified when new content is added in the feeds without having to check them one by one.I found out there is a...
View ArticleIs there any way to generate links with rel="hub" with the feedgen package in...
I generate a RSS feed with the Python package feedgen and I am now trying to implement the PubSubHubbub protocol.From what I understand herehttps://indieweb.org/How_to_publish_and_consume_WebSubI need...
View Article