UNPKG

rtm-api

Version:

Remember the Milk API Interface

124 lines (96 loc) 7.91 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>client/auth.js - Documentation</title> <script src="scripts/prettify/prettify.js"></script> <script src="scripts/prettify/lang-css.js"></script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <input type="checkbox" id="nav-trigger" class="nav-trigger" /> <label for="nav-trigger" class="navicon-button x"> <div class="navicon"></div> </label> <label for="nav-trigger" class="overlay"></label> <nav> <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="RTMClient.html">RTMClient</a><ul class='methods'><li data-type='method'><a href="RTMClient.html#get">get</a></li><li data-type='method'><a href="RTMClient.html#~auth/getAuthToken">auth/getAuthToken</a></li><li data-type='method'><a href="RTMClient.html#~auth/getAuthUrl">auth/getAuthUrl</a></li><li data-type='method'><a href="RTMClient.html#~auth/verifyAuthToken">auth/verifyAuthToken</a></li><li data-type='method'><a href="RTMClient.html#~user/create">user/create</a></li><li data-type='method'><a href="RTMClient.html#~user/export">user/export</a></li><li data-type='method'><a href="RTMClient.html#~user/exportToString">user/exportToString</a></li><li data-type='method'><a href="RTMClient.html#~user/import">user/import</a></li><li data-type='method'><a href="RTMClient.html#~user/importFromString">user/importFromString</a></li></ul></li><li><a href="RTMError.html">RTMError</a><ul class='methods'><li data-type='method'><a href="RTMError.html#.networkError">networkError</a></li><li data-type='method'><a href="RTMError.html#.rateLimitError">rateLimitError</a></li><li data-type='method'><a href="RTMError.html#.referenceError">referenceError</a></li><li data-type='method'><a href="RTMError.html#.responseError">responseError</a></li><li data-type='method'><a href="RTMError.html#.serverError">serverError</a></li><li data-type='method'><a href="RTMError.html#toString">toString</a></li></ul></li><li><a href="RTMList.html">RTMList</a></li><li><a href="RTMResponse.html">RTMResponse</a><ul class='methods'><li data-type='method'><a href="RTMResponse.html#has">has</a></li><li data-type='method'><a href="RTMResponse.html#toString">toString</a></li></ul></li><li><a href="RTMSuccess.html">RTMSuccess</a><ul class='methods'><li data-type='method'><a href="RTMSuccess.html#toString">toString</a></li></ul></li><li><a href="RTMTask.html">RTMTask</a></li><li><a href="RTMUser.html">RTMUser</a><ul class='methods'><li data-type='method'><a href="RTMUser.html#clearTaskIndexCache">clearTaskIndexCache</a></li><li data-type='method'><a href="RTMUser.html#get">get</a></li><li data-type='method'><a href="RTMUser.html#verifyAuthToken">verifyAuthToken</a></li><li data-type='method'><a href="RTMUser.html#~lists/add">lists/add</a></li><li data-type='method'><a href="RTMUser.html#~lists/archive">lists/archive</a></li><li data-type='method'><a href="RTMUser.html#~lists/get">lists/get</a></li><li data-type='method'><a href="RTMUser.html#~lists/remove">lists/remove</a></li><li data-type='method'><a href="RTMUser.html#~lists/rename">lists/rename</a></li><li data-type='method'><a href="RTMUser.html#~tasks/add">tasks/add</a></li><li data-type='method'><a href="RTMUser.html#~tasks/addTags">tasks/addTags</a></li><li data-type='method'><a href="RTMUser.html#~tasks/complete">tasks/complete</a></li><li data-type='method'><a href="RTMUser.html#~tasks/decreasePriority">tasks/decreasePriority</a></li><li data-type='method'><a href="RTMUser.html#~tasks/get">tasks/get</a></li><li data-type='method'><a href="RTMUser.html#~tasks/getTask">tasks/getTask</a></li><li data-type='method'><a href="RTMUser.html#~tasks/increasePriority">tasks/increasePriority</a></li><li data-type='method'><a href="RTMUser.html#~tasks/move">tasks/move</a></li><li data-type='method'><a href="RTMUser.html#~tasks/postpone">tasks/postpone</a></li><li data-type='method'><a href="RTMUser.html#~tasks/priority">tasks/priority</a></li><li data-type='method'><a href="RTMUser.html#~tasks/remove">tasks/remove</a></li><li data-type='method'><a href="RTMUser.html#~tasks/removeTags">tasks/removeTags</a></li><li data-type='method'><a href="RTMUser.html#~tasks/setDueDate">tasks/setDueDate</a></li><li data-type='method'><a href="RTMUser.html#~tasks/setName">tasks/setName</a></li><li data-type='method'><a href="RTMUser.html#~tasks/setURL">tasks/setURL</a></li><li data-type='method'><a href="RTMUser.html#~tasks/uncomplete">tasks/uncomplete</a></li></ul></li></ul> </nav> <div id="main"> <h1 class="page-title">client/auth.js</h1> <section> <article> <pre class="prettyprint source linenums"><code>'use strict'; const _auth = require('../utils/auth.js'); /** * This module returns the auth-related functions for RTMClient * @param {RTMClient} client RTMClient instance * @returns {{getAuthUrl: function, getAuthToken: function, verifyAuthToken: function}} * @private */ module.exports = function(client) { let rtn = {}; /** * Get an Auth URL. * * This function will generate an Auth URL that will be given to the RTM User * to authorize the RTM Client to access their account. It will also request * a frob that will be used to gain an auth token in `getAuthToken()`. * @param {function} callback Callback function(err, authUrl, frob) * @param {RTMError} callback.err RTM Error Response, if encountered * @param {string} callback.authUrl Auth URL to be given to User * @param {string} callback.frob Auth Frob to be used in `getAuthToken()` * @function RTMClient~auth/getAuthUrl */ rtn.getAuthUrl = function(callback) { _auth.getAuthUrl(client, callback); }; /** * Get an Auth Token. * * This function takes the frob that was generated by `getAuthUrl()` and * requests an Auth Token. The callback function will return an `RTMUser` * which will include the RTM User's information and an Auth Token to be * used in future API calls. * @param {string} frob Auth Frob from `getAuthUrl()` * @param {function} callback Callback function(err, user) * @param {RTMError} callback.err RTM Error Response, if encountered * @param {RTMUser} callback.user RTM User, with user information and auth token * @function RTMClient~auth/getAuthToken */ rtn.getAuthToken = function(frob, callback) { _auth.getAuthToken(frob, client, callback); }; /** * Verify Auth Token. * * This function will check if the User's Auth Token is still valid and * can be used to make authenticated RTM API requests. * @param {string|RTMUser} token Auth Token or RTMUser containing an auth token * @param {function} callback Callback function(err, verified) * @param {RTMError} callback.err RTM Error, if encountered (excluding a `Login failed / Invalid auth token` error) * @param {boolean} callback.verified `true` if the User's auth token was successfully verified or `false` if * a `Login failed / Invalid auth token` error was encountered * @function RTMClient~auth/verifyAuthToken */ rtn.verifyAuthToken = function(token, callback) { _auth.verifyAuthToken(token, client, callback); }; return rtn; };</code></pre> </article> </section> </div> <br class="clear"> <footer> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Wed Jan 09 2019 17:57:03 GMT-0500 (EST) using the <a href="https://github.com/dwaring87/docdash">@dwaring87/docdash</a> theme. </footer> <script>prettyPrint();</script> <script src="scripts/linenumber.js"></script> </body> </html>