Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

thiagopbueno/yummy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yummy

A CLI-based tool in Ruby for managing your social bookmarkings, because you're just looking delicious...

Features

It supports Delicious OAuth 2.0, given that you already have your ACCESS_TOKEN.

See below for more information on how to get you one!

Currently supported API requests (through the DeliciousAPI wrapper):

Config && Install

Create a config.yml file containing your ACCESS_TOKEN and run bundle install.

$ echo >config.yml "ACCESS_TOKEN: YOUR_ACCESS_TOKEN"

$ bundle install

Usage

$ ./yummy (posts|backup|tags|dates) [OPTIONS]

OPTIONS

-t, --tags tag1+tag2+...         Set list of tags (separated by '+') for posts
-n, --max MAX                    Set maximum number of tags/posts
-s, --start-date START_DATE      Set start date for all API requests
-e, --end-date END_DATE          Set end date for all API requests
-f, --format (json|yaml)         Backup format
-h, --help                       Display this information

All dates must be provided in the format 'YYYY-MM-DD'

EXAMPLES

Get list of 100 recent posts for tag 'ruby' from '2014-01-01'

$ ./yummy posts -t ruby -n 100 -s 2014-01-01

Save backup of all posts

$ ./yummy backup

Get list of tags with most posts

$ ./yummy tags

Get list of dates and post counts

$ ./yummy dates

Getting your ACCESS_TOKEN

These instructions are based on Delicious'. Please feel free to report to it in case of difficulties or problems.

  1. Set a new app at https://delicious.com/settings/developer
  2. Get your Client ID and Client Secret
  3. Send a request to Delicious for users' authorization
    • https://delicious.com/auth/authorize?client_id=YOUR_CLIENT_ID&redirect_uri=http://www.example.com/redirect
  4. Get your REQUEST_TOKEN
  5. Exchange ACCESS_TOKEN with REQUEST_TOKEN returned to you in last step
    • https://avosapi.delicious.com/api/v1/oauth/token?client_id=YOUR_CLIENT_ID&client_secret=YOUR_SECRET_ID&grant_type=code&code=YOUR_REQUEST_TOKEN
  6. Get your ACCESS_TOKEN

Please note that step 5. needs to be done using a POST request. You can use the Firefox addon poster, hurl.it or any other tools you might like.

Finally, you cant test it with cURL

curl -v -H "Authorization: Bearer YOUR_ACCESS_TOKEN" --url "https://api.delicious.com/v1/posts/all?tag=ruby&results=5"

About

A CLI-based tool in Ruby to manage your social bookmarkings in Delicious

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages