Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other API of what I’ve been reading

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #44506
    chrisburton
    Participant

    Is there a site (like Feedly) where you can read content from other sites and mark as read. Using their API, output the data on what you’ve read?

    What I mean by data is:

    – Article image (if there is one)
    – Article title
    – Article link
    – etc.

    Perhaps there’s more to it than that but is there a site that would at least allow me to do this?

    #133888
    chrisburton
    Participant

    Perhaps Delicious can do this or even Instapaper?

    #144111
    chrisburton
    Participant

    Just in case anyone comes across this, I am using Readability to save articles that I’ve read.

    This is my process:

    +Read an article
    +Choose Read Later by clicking the Readability toolbar extension.
    + Create a tag (you don’t have to).
    + With PHP, grab the data from the RSS Feed http://readability.com/username/latest/feed

    $xml = simplexml_load_file( “http://readability.com/christopherburton/latest/feed” );
    $json = json_encode( $xml );
    $array = json_decode( $json,TRUE );
    $items = $array[‘channel’][‘item’];

    And to see what that outputs, use:

    var_dump($items);

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Other’ is closed to new topics and replies.