npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rtm-api

v1.3.1

Published

Remember the Milk API Interface

Downloads

64

Readme

Remember The Milk API Interface

node module: rtm-api
GitHub repo: dwaring87/rtm-api


This Node module provides a wrapper around the Remember the Milk API.

You will need your own RTM API Key and Secret, available from the Remember the Milk website.

Main Features

  • Two-step User Authorization procedure

  • Direct RTM API Requests

// Requests are automatically signed and include the User's Auth Token
user.get('rtm.method', {param: 'value'}, function(err, response) {
  if ( err ) {
    return console.error(err.toString());
  }
  console.log(response);
});
  • Basic Error Handling and Response Parsing

  • Per-User Rate Limiting (following RTM API guidelines)

  • Helper Classes and Functions for Lists and Tasks

// Optional filter selecting tasks with a priority of 1
user.tasks.get('priority:1', function(err, tasks) {
  if ( err ) {
    return console.error(err.toString());
  }
  tasks.forEach(function(task){
    // task is an RTMTask instance
    console.log(task.priority);
    console.log(task.name);
  });
});

Installation

This module can be installed via npm:

npm install rtm-api

or downloaded directly from the GitHub repository.

Documentation

Full documentation is available in the /docs/ directory of this repository or online at https://dwaring87.github.io/rtm-api/.

Additional usage examples can be found in the repository's wiki pages.

Usage

Set up your API credentials by specifying your API Key, API Secret and the requested account permissions.

const RTM = require('rtm-api');
let client = new RTM('API_KEY', 'API_SECRET', RTM.PERM_DELETE);   // An instance of RTMClient

Account permissions can be granted in one of three categories:

  • read – gives the ability to read task, contact, group and list details and contents.
  • write – gives the ability to add and modify task, contact, group and list details and contents (also allows you to read).
  • delete – gives the ability to delete tasks, contacts, groups and lists (also allows you to read and write).

User Authentication

Almost all RTM API methods require an authorized user's Auth Token. This is kept in the RTMUser class which can be instantiated manually if you already have the User's information with a valid Auth Token:

let user = client.user.create(id, 'username', 'fullname', 'authToken');

Otherwise, an Auth Token can be obtained via the API using the steps outlined in the following sections.

Generate an Auth URL

First, generate an Auth URL that the RTM User will open in their browser. This will direct the RTM User to the Remember the Milk website where they will log in and authorize this program to access their account.

// Get an RTM Auth URL that will ask the RTM User to grant access to your client
client.auth.getAuthUrl(function(err, authUrl, frob) {
  if ( err ) {
    return console.error(err.toString());
  }
  
  // Have the User open the authUrl
  console.log(authUrl);
  
  // Save the frob for the next step
  ...
  
});

Generate an Auth Token

Once the RTM User has opened the authUrl and granted access to the program, pass the frob from the first step to the getAuthToken function to get an RTMUser with an Auth Token to be used in future API calls.

// Get an Auth Token for the User once they've authorized the frob
client.auth.getAuthToken(frob, function(err, user) {
  if ( err ) {
    return console.error(err.toString());
  }
  
  // If successful, the returned user will include the property `authToken`
  console.log(user.authToken);
  
  // Save the user for making authenticated API calls via user.get()
  
});

Verify the Auth Token

The Auth Token can be verified at any point using the verifyAuthToken function.

client.auth.verifyAuthToken(user.authToken, function(err, verified) {
  
  // verified will be true if auth token can be used for API calls
  
});

API Requests

To make a request to the RTM API, a method name and callback function are required.

If the RTM API method requires any parameters, they should be provided as an object with the parameters set as key/value pairs. For example, if the method requires the parameters: abc=foo and xyz=bar then they should be provided as:

{
  abc: "foo",
  xyz: "bar"
}

If the API Method does not require a User's Auth Token, the request can be made using the get function available from the RTMClient.

client.get('rtm.auth.getFrob', function(err, resp) {
  if ( err ) {
    return console.error(err.toString());
  }
  
  // Handle the Response
  console.log(resp.frob);
});

However, most API Methods will require a User's Auth Token. This can be provided directly as an auth_token parameter or by calling the get function available from the RTMUser instance, which will automatically provide the Auth Token.

let params = {
  list_id: "list id",
  filter: "tasks filter"
};
user.get('rtm.tasks.getList', params, function(err, resp) {
  if ( err ) {
    return console.error(err.toString());
  }
  
  // Handle the Response
  console.log(resp);
});

API Responses

The arguments returned in the callback of the get function will include an RTMError instance (if the RTM API returned a status of 'fail') or an RTMSuccess instance for successful requests.

Error Responses

An RTMError response will have code and msg properties set based on the RTM API response.

Additional error codes are added by rtm-api:

|error code | error description| |:---------:|------------------| | -1 | Network Error: rtm-api could not connect to the RTM API Server.| | -2 | Response Error: rtm-api could not parse the response from the RTM API Server.| | -3 | Reference Error: An RTMTask index is out of range or RTM item could not be found with the given reference.| | -4 | Rate Limit Error: The RTM User has reached the API request rate limit set by the RTM API Server.| | -5 | Server Error: rtm-api encountered a problem with the RTM API Server. Try the request again later.|

Successful Responses

For a successful response, the API response properties can be accessed directly from the RTMSuccess properties (resp.tasks, resp.tasks.list, etc). All response properties are available via resp.props

Helper Functions

rtm-api includes a number of helper classes & functions for commonly used API methods used to obtain and modify RTM Lists and Tasks. These functions are available via an RTMUser instance's lists and tasks properties.

The following list functions are available:

  • get(): get an array of RTMLists
  • add(): add a new List
  • archive(): archive a List
  • rename(): rename a List
  • remove(): remove a List

The following task functions are available:

  • get(): get an array of RTMTaskss (with the Tasks's RTMList added to the list property)
  • getTask(): get a specific Task (specified by a Task Index)
  • add(): add a new Task
  • remove(): remove a Task
  • complete(): mark a Task as completed
  • uncomplete(): mark a Task as NOT completed
  • addTags(): add one or tags to a Task
  • removeTags(): remove one or more tags from a Task
  • priority(): set the Priority of a Task
  • decreasePriority(): decrease the Priority of a Task
  • increasePriority(): increase the Priority of a Task
  • move(): move a Task to a different List
  • setDueDate(): set the due date of a Task
  • postpone(): postpone the due date of Task by one day
  • setName(): set the name of a Task
  • setURL(): set the URL of a Task

See the RTMUser entry in the Documentation for more information on the Helper Functions.

Examples using the helper functions can be found in the repository's wiki pages.