Archive

Archive for the ‘New Features’ Category

Minimum Length Feeds & Duplication Issues

May 12th, 2011 Brad No comments

We are rejecting feeds that are not a minimum of 50 words in content to increase the quality of our submissions.  We are planning to increase this over time.

We have also tightened the control over duplicate items that are submitted.  There are some people that submit the same footer items over and over again.  This does not provide a good user experience so we are preventing them from being added.

Categories: New Features, News Tags:

API Update

February 10th, 2011 Brad 2 comments

We’ve added another item to the feed submission API. The data array will now return the FeedID for the submitted feed.

More here: FeedAgg API

Categories: New Features Tags:

User Profile Pages – New Feature

November 15th, 2010 Brad 5 comments

I’ve added a new feature so that people can see the most recent feeds you have submitted. If you go to http://www.feedagg.com/user/<your username> you should see your recent feeds.  I would like to add more information to these pages so if you have any suggestions let me know.

Categories: New Features, News Tags:

Boost Your AggScore With Badges

June 27th, 2010 Brad No comments

We have added a new feature to FeedAgg that will boost your AggScore. Simply add an AggScore badge to your site or blog and your AggScore will be boosted by 5 points.  You can get the badge code by going to your feeds page in your account or after you submit a new feed the badge code will show on the confirmation page.

Social Feed Sharing

June 25th, 2010 Brad No comments

When you log into your account and view your feeds page, you’ll now notice we’ve added sharing options to the major social networks including twitter, facebook, delicious, stumbleupon and more. Click a button and you’ll be taken to that services submission page.  Try it out and let us know what you think!

Feed Posting API Beta Release

May 8th, 2010 Brad 7 comments

We want to make it is as easy as possible for our publishers to get their content on FeedAgg.com to get exposure and audiences.  To help with that we announced the start of a feed posting API almost a year ago. We have since then rewritten it in a more formal restful API interface.  Below you will find the basics for using it. Feed content policies still apply. Please give us any feedback, good or bad, on how it works for you.

Background

Feed addition requests can be posted to http://www.feedagg.com/add_feed_api.php. You will receive the response as xml containing either a success code(200) or error code(400′s and 500′s).  Successful posts will include the FeedAgg.com url for your feed.

* The API is in a very beta stage and error status codes (ie >200) may change. *

Error codes are 400′s and 500′s. Success codes are 200′s.

A minimum of one tag per feed is required, max 100 50.

Feed submissions via API require a username.

URL Encode your feed urls.

Tags are separated by commas when submitting via API.

Rate limiting still applies. Currently set at 60 submissions per minute.

Updated: 2/10/11

Variables

FeedURL (Required, URL Encoded)

Tags (A minimum of one tag per feed is required, max 100 50.)

UserName (Required)

Example Successful Submission XML Response

<?xml version="1.0" encoding="UTF-8"?>
<response>
     <status_code>200</status_code>
     <status_txt>Your feed, FeedAgg Blog, has been saved.</status_txt>
     <data>
          <title>FeedAgg Blog</title>
          <submitted_url>http://www.feedagg.com/blog/feed/</submitted_url>
          <feedagg_url>http://www.feedagg.com/feed/258970/FeedAgg</feedagg_url>
          <feedagg_id>258970</feedagg_id>
     </data>
</response>

Example PHP(v5.0) Code To Submit VIA API

//---------------------------------------------------------------------------------
// The feedagg.com API address
 $url = 'http://www.feedagg.com/add_feed_api.php';
// Set up and execute the curl process
 $curl_handle = curl_init();
 curl_setopt($curl_handle, CURLOPT_URL, "$url");
 curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
 curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($curl_handle, CURLOPT_POST, 1);
 curl_setopt($curl_handle, CURLOPT_POSTFIELDS, "FeedURL=".urlencode('http://www.feedagg.com/blog/feed/')."&Tags=tag1,tag2&UserName=<yourusername>");
 $buffer = curl_exec($curl_handle);
 curl_close($curl_handle);

// check for success or failure
 if (empty($buffer))
 {
      echo 'message' . "<br>";
 }
 else
 {
      echo 'success' . "<br>";
 }

//load to xml obj
 $xml = simplexml_load_string($buffer);

//sample results
 echo "code " . $xml->status_code . "<br>";
 echo "message " . $xml->status_txt . "<br>";
 echo "title " . $xml->data->title . "<br>";
 echo "submitted_url " . $xml->data->submitted_url .  "<br>";
 echo "feedagg_url " . $xml->data->feedagg_url . "<br>";
 echo "feedagg_id " . $xml->data->feedagg_id . "<br>";

Example C# Code To Submit VIA API
Courtesy of one of our users.  Thank you!


using System;
using System.Text;
using System.IO;
using System.Web;
using System.Net;
using System.Collections.Specialized;

namespace FeedAggExample
{
 public class FeedAgg
 {
 private const string FeedAggApiUrl = "http://www.feedagg.com/add_feed_api.php";

 public static string SubmitFeed(string FeedUrl, string Tags, string Username)
 {
 //set up the return value
 string returnValue = "";

 //Create a name value collection to hold the paramaters to be passed in the post
 NameValueCollection m_values = new NameValueCollection();

 //add all of the specified values
 m_values.Add("FeedURL", FeedUrl);
 m_values.Add("Tags", Tags);
 m_values.Add("UserName", Username);

 //encode the paramaters
 StringBuilder parameters = new StringBuilder();
 for (int i = 0; i < m_values.Count; i++)
 {
 EncodeAndAddItem(ref parameters, m_values.GetKey(i), m_values[i]);
 }

 try
 {
 //set up the request
 HttpWebRequest request = null;
 Uri uri = new Uri(FeedAggApiUrl);
 request = (HttpWebRequest)WebRequest.Create(uri);
 request.Method = "POST";
 request.ContentType = "application/x-www-form-urlencoded";
 request.ContentLength = parameters.ToString().Length;
 using (Stream writeStream = request.GetRequestStream())
 {
 UTF8Encoding encoding = new UTF8Encoding();
 byte[] bytes = encoding.GetBytes(parameters.ToString());
 writeStream.Write(bytes, 0, bytes.Length);
 }

 //Set up the response
 HttpWebResponse response = (HttpWebResponse)request.GetResponse();

 if (response.StatusCode == HttpStatusCode.OK)
 {
 using (Stream responseStream = response.GetResponseStream())
 {
 using (StreamReader readStream = new StreamReader(responseStream, Encoding.UTF8))
 {
 returnValue = readStream.ReadToEnd();
 }
 }
 }
 else
 {
 returnValue = String.Format("Error: There was an error processing the request. The exact error was: {0} {1}", response.StatusCode, response.StatusDescription);
 }

 }
 catch (Exception ex)
 {

 returnValue = "Exception occured while processing your request. The exception was:" + ex.Message;
 }

 return returnValue;
 }

 /// <summary>
 /// Encodes an item and ads it to the string.
 /// </summary>
 /// <param name="baseRequest">The previously encoded data.</param>
 /// <param name="dataItem">The data to encode.</param>
 /// <returns>A string containing the old data and the previously encoded data.</returns>
 private static void EncodeAndAddItem(ref StringBuilder baseRequest, string key, string dataItem)
 {
 if (baseRequest == null)
 {
 baseRequest = new StringBuilder();
 }
 if (baseRequest.Length != 0)
 {
 baseRequest.Append("&");
 }
 baseRequest.Append(key);
 baseRequest.Append("=");
 baseRequest.Append(System.Web.HttpUtility.UrlEncode(dataItem));
 }

 }
}
Categories: New Features, News Tags: , , ,

New User Options

January 25th, 2010 Brad No comments

I’ve added a couple new features to the user management pages by request.

Feed Name editing – When editing a feed, you can now change the name.

Email Address editing – You can now edit your email address under your info page.

Better Sorting Options – I’ve added some sorting options for feeds under your feed listing page.  I’ll be adding some more in the future.

Categories: New Features, News Tags:

Adding Bulk Feeds

July 22nd, 2009 Brad 12 comments

By popular request, I’ve added a new bulk feed addition form here: http://www.feedagg.com/add_feed_bulk.php

Feeds can be separated by either spaces or commas, just like tags.  These seem like the most common but if you use a different type of separator let me know.

Note: The tags you add will be applied to all the feeds you add through the bulk uploader.

Categories: New Features, News Tags:

New Add Tags Options

July 11th, 2009 Brad 3 comments

When adding Tags to new feeds you now have the option to separate Tags with either spaces or commas.  Tags added from the feed page or feed admin pages must be separated by commas.  This is a widely requested feature and we’re happy to finally add it.

Categories: New Features Tags:

Post Your FeedAgg Feed To Twitter

June 19th, 2009 Brad 11 comments

Wouldn’t it be great if you could update your twitter feed when you update your RSS/XML feed?

We thought so too.

Now when you look at your feeds list you will see a link for “Twitter.” When you click that link you will be taken to the 3 step setup process to integrate into Twitter.  Enter the Twitter username you want to post to, authorize, then finally select your update frequency. From there we will check your feed at the frequency your specify and post any changes to your twitter account.

For those worried about handing over your Twitter password to another web site, worry not, we are using the OAuth protocol to verify against Twitter so you don’t need to give us your Twitter password.

Categories: New Features, News Tags: