forked from jmettraux/rufus-rtm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
131 lines (72 loc) · 2.99 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
= maisonneuve-rtm
Modified version of the rufus-rtm gem, removing the dependency of the "rufus-verbs" gem
== getting it
sudo gem install -y maisonneuve-rtm
== credentials
'rufus-rtm' expects to find RTM credentials in the environment. It will look for :
* RTM_API_KEY
* RTM_SHARED_SECRET
* RTM_FROB
* RTM_AUTH_TOKEN
(Note since version 0.2, it's OK to not set these environment variables and to pass their values for each method with :api_key, :shared_secret, :frob and :auth_token optional parameters (see test_2 of test/tasks_test.rb))
You have to apply for the first two ones at http://www.rememberthemilk.com/services/api/keys.rtm
Once you have the API key and the shared secret, you have to get the frob and the auth token. Fire your 'irb' and
>> require 'rubygems'
>> require 'rufus/rtm'
please visit this URL with your browser and then hit 'enter' :
http://www.rememberthemilk.com/services/auth/?api_sig=70036e47c38da170fee431f04e29e8f0&frob=fa794036814b78fddf3e5641fe7c37f80e7d91fc&perms=delete&api_key=7f07e4fc5a944bf8c02a7d1e45c79346
visit, the given URL, you should finally be greeted by a message like "You have successfully authorized the application API Application. You may now close this window and continue the authentication process with the application that sent you here.", hit enter...
ok, now getting auth token...
here are your RTM_FROB and RTM_AUTH_TOKEN, make sure to place them
in your environment :
export RTM_FROB=3cef465718317b837eec2faeb5340fe777d55c7c
export RTM_AUTH_TOKEN=ca0022d705ea1831543b7cdd2d7e3d707a0e1efb
make then sure that all the 4 variables are set in the environment you use for running 'rufus-rtm'.
== usage
require 'rubygems'
require 'rufus/rtm'
include Rufus::RTM
#
# listing tasks
tasks = Task.find
# finding all the tasks
tasks = Task.find :filter => "status:incomplete"
# finding all the incomplete tasks
tasks.each do |task|
puts "task id #{task.task_id}"
puts " #{task.name} (#{task.tags.join(",")})"
puts
end
#
# adding a task
task = Task.add! "study this rufus-rtm gem"
# gets added to the 'Inbox' by default
puts "task id is #{task.task_id}"
#
# enumerating lists
lists = List.find
w = lists.find { |l| l.name == 'Work' }
puts "my Work list id is #{w.list_id}"
#
# adding a task to a list
task = Task.add! "work, more work", w.list_id
#
# completing a task
task.complete!
#
# deleting a task
task.delete!
Note that the methods that change the state of the Remember The Milk dataset have names ending with an exclamation mark.
Note as well that, there is a 1 second delay before any request to the RTM server, in order to respect their conditions. This may change in future releases.
= features yet to implement
* tags modifications
* smart lists
* ...
== source
http://github.com/maisonneuve/rufus-rtm
== author
Nicolas Maisonneuve
version modified from the work of John Mettraux, jmettraux@gmail.com
http://jmettraux.wordpress.com
== license
MIT