forked from Shinmera/chirp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
468 lines (342 loc) · 210 KB
/
about.html
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"> <title>Chirp</title> <meta name="viewport" content="width=device-width"> <meta name="description" content="Chirp Twitter client featuring full API coverage."> <meta name="author" content="Nicolas Hafner <[email protected]>"> <style type="text/css"> body{
max-width: 1024px;
margin: 0 auto 0 auto;
font-family: sans-serif;
color: #333333;
font-size: 14pt;
padding: 5px;
}
body>header{
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;
max-width: 100%;
text-align: center;
}
body>header img{
max-width: 50%;
}
img{
max-width: 100%;
max-height: 100%;
}
code{
font-family: Consolas, Inconsolata, monospace;
}
a{
text-decoration: none;
color: #0055AA;
}
a img{
border: none;
}
#documentation{
text-align: justify;
}
#documentation pre{
margin-left: 20px;
overflow: auto;
}
#documentation img{
margin: 5px;
}
#symbol-index>ul{
list-style: none;
padding: 0;
}
#symbol-index .package>ul{
list-style: none;
padding: 0 0 0 10px;
}
#symbol-index .package .nicknames{
font-weight: normal;
}
#symbol-index .package h4{
display: inline-block;
margin: 0;
}
#symbol-index .package article{
margin: 0 0 15px 0;
}
#symbol-index .package article header{
font-size: 1.2em;
font-weight: normal;
}
#symbol-index .package .name{
margin-right: 5px;
}
#symbol-index .package .docstring{
margin: 0 0 0 15px;
white-space: pre-wrap;
font-size: 12pt;
}
@media (max-width: 800px){
body{font-size: 12pt;}
} </style> </head> <body> <header> <h1><img alt="chirp" src="chirp-logo.png"></h1> <span class="version">0.2.0</span> <p class="description">Chirp Twitter client featuring full API coverage.</p> </header> <main> <article id="documentation"> <div><h2 id="how_to">How To</h2> <p>Load Chirp through Quicklisp or ASDF:</p> <pre><code>(ql:quickload :chirp)
</code></pre> <p>To use twitter's API, you need to authorize an account. By default this happens through the PIN method, though others are available as well. Retrieve your <a href="https://apps.twitter.com/">twitter application</a>'s api key and secret and invoke the following function:</p> <pre><code>(<a href="#CHIRP-EXTRA:INITIATE-AUTHENTICATION">chirp:initiate-authentication</a> :api-key "<app api key>" :api-secret "<app api secret>")
</code></pre> <p>You may use the following keys for testing purposes: API-KEY: <code>D1pMCK17gI10bQ6orBPS0w</code> API-SECRET: <code>BfkvKNRRMoBPkEtDYAAOPW4s2G9U8Z7u3KAf0dBUA</code>. These are for the CL-CHIRP twitter application. You should not use these for anything other than the testing of Chirp, as it may pose a security risk.</p> <p>If the first OAuth step is successful, it should return an URL that you have to visit. This will then prompt you to authorize the application and present a PIN. Copy this pin and complete the authentication process:</p> <pre><code>(<a href="#CHIRP-EXTRA:COMPLETE-AUTHENTICATION">chirp:complete-authentication</a> "<pin>")
</code></pre> <p>If the function returns successfully, you are ready to use the twitter API:</p> <pre><code>(<a href="#CHIRP-API:ACCOUNT/VERIFY-CREDENTIALS">chirp:account/verify-credentials</a>)
</code></pre> <p>In the case that you do not want to repeat the authentication process, you can save and later set the <code><a href="#CHIRP-EXTRA:*OAUTH-API-KEY*">*oauth-api-key*</a></code>, <code><a href="#CHIRP-EXTRA:*OAUTH-API-SECRET*">*oauth-api-secret*</a></code>, <code><a href="#CHIRP-EXTRA:*OAUTH-ACCESS-TOKEN*">*oauth-access-token*</a></code> and <code><a href="#CHIRP-EXTRA:*OAUTH-ACCESS-SECRET*">*oauth-access-secret*</a></code> variables manually. That's all the information it takes to authenticate over twitter. Make sure to keep these tokens secret.</p> <pre><code>(<a href="#CHIRP-API:STATUSES/UPDATE">chirp:statuses/update</a> "Hooray, I successfully used the Chirp Common Lisp library to tweet!")
</code></pre> <p>There are functions to check for tweet length, available languages, access level, rate limits, and so on as well.</p> <pre><code>(<a href="#CHIRP-EXTRA:COMPUTE-STATUS-LENGTH">chirp:compute-status-length</a> "Wowsers, URL shortening sure is a thing! https://github.com/Shinmera/chirp.git")
(<a href="#CHIRP-EXTRA:VALID-LANGUAGE-P">chirp:valid-language-p</a> "en")
(<a href="#CHIRP-EXTRA:ACCESS-LEVEL">chirp:access-level</a>)
</code></pre> <p>Chirp also provides access to twitter's streaming API:</p> <pre><code>(<a href="#CHIRP-API:STREAM/USER">chirp:stream/user</a> #'(<a href="http://l1sp.org/cl/lambda">lambda</a> (<a href="#CHIRP-OBJECTS:MESSAGE">message</a>) (<a href="http://l1sp.org/cl/when">when</a> message (<a href="http://l1sp.org/cl/format">format</a> T "~&amp;STREAM: ~a~%" message)) T))
</code></pre> <p>Do note that Chirp does not concern itself with threading. As such, processing stream objects in the background is up to you.</p> <p>Using the various convenience methods, a simple bot can be assembled with relative ease:</p> <pre><code>(<a href="#CHIRP-EXTRA:MAP-TIMELINE">chirp:map-timeline</a> :mentions #'(<a href="http://l1sp.org/cl/lambda">lambda</a> (<a href="#CHIRP-OBJECTS:STATUS">status</a>) (<a href="#CHIRP-EXTRA:REPLY">chirp:reply</a> status "Chirp chirp!")))
</code></pre> <p>Though the timelines are heavily rate-limited. For a more immediate response, the streaming API should be used:</p> <pre><code>(<a href="#CHIRP-EXTRA:START-STREAM">chirp:start-stream</a>
:user #'(<a href="http://l1sp.org/cl/lambda">lambda</a> (<a href="#CHIRP-OBJECTS:MESSAGE">message</a>)
(<a href="http://l1sp.org/cl/when">when</a> (<a href="http://l1sp.org/cl/and">and</a> (<a href="http://l1sp.org/cl/typep">typep</a> message 'chirp:status) (<a href="#CHIRP-EXTRA:DIRECT-MENTION-P">chirp:direct-mention-p</a> message))
(<a href="#CHIRP-EXTRA:REPLY">chirp:reply</a> message "Chirp chirp!"))
T))
</code></pre> <p>One thing to note is that twitter XML entity encodes certain things like status texts. I frankly don't know why it does that since it's a JSON api. Chirp does not automatically decode these entities, as the twitter entities (like hashtags, urls, etc) contain position markers that depend on the encoded string. Decoding it screws over these positions. However, Chirp offers a couple of functions to make handling of entities or decoding easier:</p> <pre><code>(<a href="#CHIRP-EXTRA:XML-DECODE">chirp:xml-decode</a> (<a href="#CHIRP-OBJECTS:TEXT">chirp:text</a> status))
(<a href="#CHIRP-EXTRA:TEXT-WITH-EXPANDED-URLS">chirp:text-with-expanded-urls</a> status)
(<a href="#CHIRP-EXTRA:TEXT-WITH-MARKUP">chirp:text-with-markup</a> status)
(<a href="#CHIRP-EXTRA:REPLACE-ENTITY">chirp:replace-entity</a> :urls #'expanded-url)
</code></pre> <p>Especially the last two can be very useful for preparing the text for a web-interface.
Chirp's symbols are separated into three packages (and unified in <code>CHIRP</code>) so that you may selectively <code>USE</code> what you need.</p> <ul> <li><code>CHIRP-API</code> contains all the direct Twitter API call mapping functions.</li> <li><code>CHIRP-EXTRA</code> contains the various helper functions that make dealing with the API easier.</li> <li><code>CHIRP-OBJECTS</code> contains all accessor and class symbols. You probably want to <code>USE</code> this package if you work with the objects a lot.</li> </ul> </div> </article> <article id="copyright"> <h2>Copyright</h2> <span>chirp</span> is licensed under the <span><a href="https://tldrlegal.com/search?q=Artistic">Artistic</a></span> license. © <span>Nicolas Hafner <[email protected]></span> . </article> <article id="symbol-index"> <h2>Package Index</h2> <ul><li class="package"> <h3> <a name="CHIRP-OBJECTS" href="#CHIRP-OBJECTS">CHIRP-OBJECTS</a> <span class="nicknames">(ORG.TYMOONNEXT.CHIRP.OBJECTS)</span> </h3> <ul><li> <a name="CHIRP-OBJECTS:BANNER"> </a> <article id="CLASS CHIRP-OBJECTS:BANNER"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ABANNER">BANNER</a></code></h4> </header> <div class="docstring"><pre>Class representation of a banner as returned by users/profile-banner.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:CONFIGURATION"> </a> <article id="CLASS CHIRP-OBJECTS:CONFIGURATION"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ACONFIGURATION">CONFIGURATION</a></code></h4> </header> <div class="docstring"><pre>Class representation of the twitter configuration object.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/configuration</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:CURSOR"> </a> <article id="CLASS CHIRP-OBJECTS:CURSOR"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ACURSOR">CURSOR</a></code></h4> </header> <div class="docstring"><pre>Cursor object to traverse cursored sets.
According to https://dev.twitter.com/docs/misc/cursoring</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:DIRECT-MESSAGE"> </a> <article id="CLASS CHIRP-OBJECTS:DIRECT-MESSAGE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ADIRECT-MESSAGE">DIRECT-MESSAGE</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter direct-message object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:ENTITY"> </a> <article id="CLASS CHIRP-OBJECTS:ENTITY"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AENTITY">ENTITY</a></code></h4> </header> <div class="docstring"><pre>Base class for twitter entity objects.
According to spec https://dev.twitter.com/docs/entities</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-ACCESS-REVOKED"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-ACCESS-REVOKED"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-ACCESS-REVOKED">EVENT-ACCESS-REVOKED</a></code></h4> </header> <div class="docstring"><pre>User deauthorize event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-BLOCK"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-BLOCK"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-BLOCK">EVENT-BLOCK</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-FAVORITE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-FAVORITE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-FAVORITE">EVENT-FAVORITE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-FOLLOW"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-FOLLOW"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-FOLLOW">EVENT-FOLLOW</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-CREATE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-CREATE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-CREATE">EVENT-LIST-CREATE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-DESTROY"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-DESTROY"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-DESTROY">EVENT-LIST-DESTROY</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-MEMBER-ADD"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-MEMBER-ADD"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-MEMBER-ADD">EVENT-LIST-MEMBER-ADD</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-MEMBER-REMOVE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-MEMBER-REMOVE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-MEMBER-REMOVE">EVENT-LIST-MEMBER-REMOVE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-UPDATE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-UPDATE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-UPDATE">EVENT-LIST-UPDATE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-USER-SUBSCRIBE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-USER-SUBSCRIBE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-USER-SUBSCRIBE">EVENT-LIST-USER-SUBSCRIBE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-LIST-USER-UNSUBSCRIBE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-LIST-USER-UNSUBSCRIBE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-LIST-USER-UNSUBSCRIBE">EVENT-LIST-USER-UNSUBSCRIBE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-UNBLOCK"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-UNBLOCK"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-UNBLOCK">EVENT-UNBLOCK</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-UNFAVORITE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-UNFAVORITE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-UNFAVORITE">EVENT-UNFAVORITE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-UNFOLLOW"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-UNFOLLOW"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-UNFOLLOW">EVENT-UNFOLLOW</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-UNKNOWN"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-UNKNOWN"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-UNKNOWN">EVENT-UNKNOWN</a></code></h4> </header> <div class="docstring"><pre>Unknown stream event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENT-USER-UPDATE"> </a> <article id="CLASS CHIRP-OBJECTS:EVENT-USER-UPDATE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AEVENT-USER-UPDATE">EVENT-USER-UPDATE</a></code></h4> </header> <div class="docstring"><pre> event</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:GEOMETRY"> </a> <article id="CLASS CHIRP-OBJECTS:GEOMETRY"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AGEOMETRY">GEOMETRY</a></code></h4> </header> <div class="docstring"><pre>Object for locations containing geometrical shape data.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:HASHTAG"> </a> <article id="CLASS CHIRP-OBJECTS:HASHTAG"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AHASHTAG">HASHTAG</a></code></h4> </header> <div class="docstring"><pre>Twitter hashtag entity.
According to spec https://dev.twitter.com/docs/entities#The_hashtags_entity</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:LANGUAGE"> </a> <article id="CLASS CHIRP-OBJECTS:LANGUAGE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ALANGUAGE">LANGUAGE</a></code></h4> </header> <div class="docstring"><pre>Class representation of the twitter language object.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/languages</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:LOCATION"> </a> <article id="CLASS CHIRP-OBJECTS:LOCATION"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ALOCATION">LOCATION</a></code></h4> </header> <div class="docstring"><pre>Twitter object containing Locational data. Used for the Places & Geo API.
According to spec https://dev.twitter.com/docs/platform-objects/places</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:MEDIA"> </a> <article id="CLASS CHIRP-OBJECTS:MEDIA"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AMEDIA">MEDIA</a></code></h4> </header> <div class="docstring"><pre>Twitter media entity.
According to spec https://dev.twitter.com/docs/entities#The_media_entity</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:MENTION"> </a> <article id="CLASS CHIRP-OBJECTS:MENTION"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AMENTION">MENTION</a></code></h4> </header> <div class="docstring"><pre>Twitter mention entity.
According to spec https://dev.twitter.com/docs/entities#The_user_mentions_entity</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:MESSAGE"> </a> <article id="CLASS CHIRP-OBJECTS:MESSAGE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AMESSAGE">MESSAGE</a></code></h4> </header> <div class="docstring"><pre>Superclass for all stream messages.
According to spec https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:OEMBED"> </a> <article id="CLASS CHIRP-OBJECTS:OEMBED"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AOEMBED">OEMBED</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter oembed object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:RELATIONSHIP"> </a> <article id="CLASS CHIRP-OBJECTS:RELATIONSHIP"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ARELATIONSHIP">RELATIONSHIP</a></code></h4> </header> <div class="docstring"><pre>Class representation of a relationship (target or source) to a user.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:RESOURCE"> </a> <article id="CLASS CHIRP-OBJECTS:RESOURCE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ARESOURCE">RESOURCE</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter resource objkect.
According to spec https://dev.twitter.com/docs/api/1.1/get/application/rate_limit_status</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:SAVED-SEARCH"> </a> <article id="CLASS CHIRP-OBJECTS:SAVED-SEARCH"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASAVED-SEARCH">SAVED-SEARCH</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter saved-search object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:SEARCH-METADATA"> </a> <article id="CLASS CHIRP-OBJECTS:SEARCH-METADATA"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASEARCH-METADATA">SEARCH-METADATA</a></code></h4> </header> <div class="docstring"><pre>Class representation of the twitter search metadata object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:SETTINGS"> </a> <article id="CLASS CHIRP-OBJECTS:SETTINGS"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASETTINGS">SETTINGS</a></code></h4> </header> <div class="docstring"><pre>Class representation of the twitter user settings object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:SIZE"> </a> <article id="CLASS CHIRP-OBJECTS:SIZE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASIZE">SIZE</a></code></h4> </header> <div class="docstring"><pre>Wrapper for size information in media entities.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:SLUG"> </a> <article id="CLASS CHIRP-OBJECTS:SLUG"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASLUG">SLUG</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter suggestion (slug) object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STATUS"> </a> <article id="CLASS CHIRP-OBJECTS:STATUS"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTATUS">STATUS</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter status (tweet).
According to spec https://dev.twitter.com/docs/platform-objects/tweets</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-CONTROL"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-CONTROL"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-CONTROL">STREAM-CONTROL</a></code></h4> </header> <div class="docstring"><pre>Site stream control notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-DELETE"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-DELETE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-DELETE">STREAM-DELETE</a></code></h4> </header> <div class="docstring"><pre>Status deletion notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-DISCONNECT"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-DISCONNECT"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-DISCONNECT">STREAM-DISCONNECT</a></code></h4> </header> <div class="docstring"><pre>Disconnection notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-ENVELOPE"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-ENVELOPE"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-ENVELOPE">STREAM-ENVELOPE</a></code></h4> </header> <div class="docstring"><pre>Container class for site streams</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-EVENT"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-EVENT"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-EVENT">STREAM-EVENT</a></code></h4> </header> <div class="docstring"><pre>Stream event superclass</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-FRIENDS"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-FRIENDS"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-FRIENDS">STREAM-FRIENDS</a></code></h4> </header> <div class="docstring"><pre>Friends list notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-LIMIT"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-LIMIT"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-LIMIT">STREAM-LIMIT</a></code></h4> </header> <div class="docstring"><pre>Limit notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-SCRUB-GEO"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-SCRUB-GEO"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-SCRUB-GEO">STREAM-SCRUB-GEO</a></code></h4> </header> <div class="docstring"><pre>Location deletion notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-STATUS-WITHHELD"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-STATUS-WITHHELD"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-STATUS-WITHHELD">STREAM-STATUS-WITHHELD</a></code></h4> </header> <div class="docstring"><pre>Status withheld notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-UNKNOWN"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-UNKNOWN"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-UNKNOWN">STREAM-UNKNOWN</a></code></h4> </header> <div class="docstring"><pre>Unknown stream object</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-USER-WITHHELD"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-USER-WITHHELD"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-USER-WITHHELD">STREAM-USER-WITHHELD</a></code></h4> </header> <div class="docstring"><pre>User withheld notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-WARNING"> </a> <article id="CLASS CHIRP-OBJECTS:STREAM-WARNING"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ASTREAM-WARNING">STREAM-WARNING</a></code></h4> </header> <div class="docstring"><pre>Warning notice</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:T-SYMBOL"> </a> <article id="CLASS CHIRP-OBJECTS:T-SYMBOL"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AT-SYMBOL">T-SYMBOL</a></code></h4> </header> <div class="docstring"><pre>Twitter symbol entity. Name chosen to avoid package clash.
According to spec https://dev.twitter.com/docs/entities#The_symbols_entity</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:TREND"> </a> <article id="CLASS CHIRP-OBJECTS:TREND"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ATREND">TREND</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter trend object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:TREND-LOCATION"> </a> <article id="CLASS CHIRP-OBJECTS:TREND-LOCATION"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3ATREND-LOCATION">TREND-LOCATION</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter trend location object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:URL"> </a> <article id="CLASS CHIRP-OBJECTS:URL"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AURL">URL</a></code></h4> </header> <div class="docstring"><pre>Twitter URL entity.
According to spec https://dev.twitter.com/docs/entities#The_urls_entity</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:USER"> </a> <article id="CLASS CHIRP-OBJECTS:USER"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AUSER">USER</a></code></h4> </header> <div class="docstring"><pre>Class representation of a user.
According to spec https://dev.twitter.com/docs/platform-objects/users</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:USER-LIST"> </a> <article id="CLASS CHIRP-OBJECTS:USER-LIST"> <header class="class"> <span class="type">class</span> <h4 class="name"><code><a href="#CLASS%20CHIRP-OBJECTS%3AUSER-LIST">USER-LIST</a></code></h4> </header> <div class="docstring"><pre>Class representation of a twitter list object.</pre></div> </article> </li><li> <a name="CHIRP-OBJECTS:OAUTH-ERROR"> </a> <article id="CONDITION CHIRP-OBJECTS:OAUTH-ERROR"> <header class="condition"> <span class="type">condition</span> <h4 class="name"><code><a href="#CONDITION%20CHIRP-OBJECTS%3AOAUTH-ERROR">OAUTH-ERROR</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:OAUTH-PARAMETER-MISSING"> </a> <article id="CONDITION CHIRP-OBJECTS:OAUTH-PARAMETER-MISSING"> <header class="condition"> <span class="type">condition</span> <h4 class="name"><code><a href="#CONDITION%20CHIRP-OBJECTS%3AOAUTH-PARAMETER-MISSING">OAUTH-PARAMETER-MISSING</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:OAUTH-REQUEST-ERROR"> </a> <article id="CONDITION CHIRP-OBJECTS:OAUTH-REQUEST-ERROR"> <header class="condition"> <span class="type">condition</span> <h4 class="name"><code><a href="#CONDITION%20CHIRP-OBJECTS%3AOAUTH-REQUEST-ERROR">OAUTH-REQUEST-ERROR</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ADDRESS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ADDRESS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AADDRESS">ADDRESS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ALL-REPLIES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ALL-REPLIES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AALL-REPLIES">ALL-REPLIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ASSOCIATED-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ASSOCIATED-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AASSOCIATED-URL">ASSOCIATED-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:AUTHOR-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:AUTHOR-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AAUTHOR-NAME">AUTHOR-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:AUTHOR-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:AUTHOR-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AAUTHOR-URL">AUTHOR-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:AVATAR"> </a> <article id="ACCESSOR CHIRP-OBJECTS:AVATAR"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AAVATAR">AVATAR</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:BACKGROUND"> </a> <article id="ACCESSOR CHIRP-OBJECTS:BACKGROUND"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ABACKGROUND">BACKGROUND</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:BLOCKING"> </a> <article id="ACCESSOR CHIRP-OBJECTS:BLOCKING"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ABLOCKING">BLOCKING</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:BOUNDING-BOX"> </a> <article id="ACCESSOR CHIRP-OBJECTS:BOUNDING-BOX"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ABOUNDING-BOX">BOUNDING-BOX</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CACHE-AGE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CACHE-AGE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACACHE-AGE">CACHE-AGE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CAN-DM"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CAN-DM"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACAN-DM">CAN-DM</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CHARACTERS-RESERVED-PER-MEDIA"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CHARACTERS-RESERVED-PER-MEDIA"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACHARACTERS-RESERVED-PER-MEDIA">CHARACTERS-RESERVED-PER-MEDIA</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CODE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CODE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACODE">CODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COLLECTION-TYPE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COLLECTION-TYPE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOLLECTION-TYPE">COLLECTION-TYPE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COLORS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COLORS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOLORS">COLORS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COMPLETED-IN"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COMPLETED-IN"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOMPLETED-IN">COMPLETED-IN</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CONNECTIONS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CONNECTIONS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACONNECTIONS">CONNECTIONS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CONTAINED-WITHIN"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CONTAINED-WITHIN"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACONTAINED-WITHIN">CONTAINED-WITHIN</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CONTRIBUTORS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CONTRIBUTORS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACONTRIBUTORS">CONTRIBUTORS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CONTROL-URI"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CONTROL-URI"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACONTROL-URI">CONTROL-URI</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COOKIE-PERSONALIZATION"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COOKIE-PERSONALIZATION"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOOKIE-PERSONALIZATION">COOKIE-PERSONALIZATION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COORDINATES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COORDINATES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOORDINATES">COORDINATES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COUNTRY"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COUNTRY"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOUNTRY">COUNTRY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COUNTRY-CODE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COUNTRY-CODE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOUNTRY-CODE">COUNTRY-CODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COUNTRY-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COUNTRY-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOUNTRY-NAME">COUNTRY-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:COUNTS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:COUNTS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACOUNTS">COUNTS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:CREATED-AT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:CREATED-AT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ACREATED-AT">CREATED-AT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:DATA"> </a> <article id="ACCESSOR CHIRP-OBJECTS:DATA"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ADATA">DATA</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:DEFAULT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:DEFAULT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ADEFAULT">DEFAULT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:DESCRIPTION"> </a> <article id="ACCESSOR CHIRP-OBJECTS:DESCRIPTION"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ADESCRIPTION">DESCRIPTION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:DISPLAY-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:DISPLAY-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ADISPLAY-URL">DISPLAY-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:DM-TEXT-CHARACTER-LIMIT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:DM-TEXT-CHARACTER-LIMIT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ADM-TEXT-CHARACTER-LIMIT">DM-TEXT-CHARACTER-LIMIT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:EMAIL-DISCOVERABLE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:EMAIL-DISCOVERABLE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AEMAIL-DISCOVERABLE">EMAIL-DISCOVERABLE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:END"> </a> <article id="ACCESSOR CHIRP-OBJECTS:END"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AEND">END</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ENTITIES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ENTITIES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AENTITIES">ENTITIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:EVENTS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:EVENTS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AEVENTS">EVENTS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:EXPANDED-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:EXPANDED-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AEXPANDED-URL">EXPANDED-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FAVORITED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FAVORITED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFAVORITED">FAVORITED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FOLLOW-REQUEST-SENT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FOLLOW-REQUEST-SENT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFOLLOW-REQUEST-SENT">FOLLOW-REQUEST-SENT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FOLLOWED-BY"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FOLLOWED-BY"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFOLLOWED-BY">FOLLOWED-BY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FOLLOWING"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FOLLOWING"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFOLLOWING">FOLLOWING</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FOR-USER"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FOR-USER"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFOR-USER">FOR-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FORCE-HTTPS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FORCE-HTTPS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFORCE-HTTPS">FORCE-HTTPS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FRIENDS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FRIENDS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFRIENDS">FRIENDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:FULL-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:FULL-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AFULL-NAME">FULL-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:GEO"> </a> <article id="ACCESSOR CHIRP-OBJECTS:GEO"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AGEO">GEO</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:HEIGHT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:HEIGHT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AHEIGHT">HEIGHT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:HTML"> </a> <article id="ACCESSOR CHIRP-OBJECTS:HTML"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AHTML">HTML</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:HTTP-BODY"> </a> <article id="ACCESSOR CHIRP-OBJECTS:HTTP-BODY"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AHTTP-BODY">HTTP-BODY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:HTTP-HEADERS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:HTTP-HEADERS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AHTTP-HEADERS">HTTP-HEADERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:HTTP-STATUS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:HTTP-STATUS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AHTTP-STATUS">HTTP-STATUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AID">ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:IN-REPLY-TO"> </a> <article id="ACCESSOR CHIRP-OBJECTS:IN-REPLY-TO"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AIN-REPLY-TO">IN-REPLY-TO</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LANGUAGE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LANGUAGE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALANGUAGE">LANGUAGE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LATITUDE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LATITUDE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALATITUDE">LATITUDE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LIMIT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LIMIT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALIMIT">LIMIT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LOCATION"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LOCATION"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALOCATION">LOCATION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LOCATION-TYPE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LOCATION-TYPE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALOCATION-TYPE">LOCATION-TYPE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:LONGITUDE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:LONGITUDE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ALONGITUDE">LONGITUDE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MARKED-SPAM"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MARKED-SPAM"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMARKED-SPAM">MARKED-SPAM</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MAX-ID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MAX-ID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMAX-ID">MAX-ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MAX-MEDIA-PER-UPLOAD"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MAX-MEDIA-PER-UPLOAD"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMAX-MEDIA-PER-UPLOAD">MAX-MEDIA-PER-UPLOAD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MEDIA-TYPE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MEDIA-TYPE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMEDIA-TYPE">MEDIA-TYPE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MEDIA-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MEDIA-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMEDIA-URL">MEDIA-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MEDIA-URL-HTTPS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MEDIA-URL-HTTPS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMEDIA-URL-HTTPS">MEDIA-URL-HTTPS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MESSAGE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MESSAGE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMESSAGE">MESSAGE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:MODE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:MODE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AMODE">MODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ANAME">NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:NEXT-RESULTS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:NEXT-RESULTS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ANEXT-RESULTS">NEXT-RESULTS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:NON-USERNAME-PATHS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:NON-USERNAME-PATHS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ANON-USERNAME-PATHS">NON-USERNAME-PATHS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:NOTIFICATIONS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:NOTIFICATIONS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ANOTIFICATIONS">NOTIFICATIONS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:NOTIFICATIONS-ENABLED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:NOTIFICATIONS-ENABLED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ANOTIFICATIONS-ENABLED">NOTIFICATIONS-ENABLED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:OEMBED-TYPE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:OEMBED-TYPE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AOEMBED-TYPE">OEMBED-TYPE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:ORDER"> </a> <article id="ACCESSOR CHIRP-OBJECTS:ORDER"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AORDER">ORDER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PARAMETER"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PARAMETER"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APARAMETER">PARAMETER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PARAMETERS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PARAMETERS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APARAMETERS">PARAMETERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PARENT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PARENT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APARENT">PARENT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PHOTO-SIZE-LIMIT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PHOTO-SIZE-LIMIT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APHOTO-SIZE-LIMIT">PHOTO-SIZE-LIMIT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PHOTO-SIZES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PHOTO-SIZES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APHOTO-SIZES">PHOTO-SIZES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PLACE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PLACE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APLACE">PLACE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PLACE-CODE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PLACE-CODE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APLACE-CODE">PLACE-CODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PLACE-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PLACE-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APLACE-NAME">PLACE-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:POLY-LINES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:POLY-LINES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APOLY-LINES">POLY-LINES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:POSSIBLY-SENSITIVE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:POSSIBLY-SENSITIVE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APOSSIBLY-SENSITIVE">POSSIBLY-SENSITIVE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PROMOTED-CONTENT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PROMOTED-CONTENT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APROMOTED-CONTENT">PROMOTED-CONTENT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PROTECTED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PROTECTED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APROTECTED">PROTECTED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PROVIDER-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PROVIDER-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APROVIDER-NAME">PROVIDER-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:PROVIDER-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:PROVIDER-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3APROVIDER-URL">PROVIDER-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:QUERY"> </a> <article id="ACCESSOR CHIRP-OBJECTS:QUERY"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AQUERY">QUERY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:REASON"> </a> <article id="ACCESSOR CHIRP-OBJECTS:REASON"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AREASON">REASON</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RECIPIENT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RECIPIENT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARECIPIENT">RECIPIENT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:REFRESH-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:REFRESH-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AREFRESH-URL">REFRESH-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:REMAINING"> </a> <article id="ACCESSOR CHIRP-OBJECTS:REMAINING"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AREMAINING">REMAINING</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:REQUEST-METHOD"> </a> <article id="ACCESSOR CHIRP-OBJECTS:REQUEST-METHOD"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AREQUEST-METHOD">REQUEST-METHOD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RESET"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RESET"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARESET">RESET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RESIZE-METHOD"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RESIZE-METHOD"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARESIZE-METHOD">RESIZE-METHOD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RESULT-COUNT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RESULT-COUNT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARESULT-COUNT">RESULT-COUNT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RETWEETED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RETWEETED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARETWEETED">RETWEETED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:RETWEETED-STATUS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:RETWEETED-STATUS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ARETWEETED-STATUS">RETWEETED-STATUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SCREEN-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SCREEN-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASCREEN-NAME">SCREEN-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SEARCH-POSITION"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SEARCH-POSITION"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASEARCH-POSITION">SEARCH-POSITION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SENDER"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SENDER"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASENDER">SENDER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SHAPE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SHAPE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASHAPE">SHAPE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SHORT-URL-LENGTH"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SHORT-URL-LENGTH"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASHORT-URL-LENGTH">SHORT-URL-LENGTH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SHORT-URL-LENGTH-HTTPS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SHORT-URL-LENGTH-HTTPS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASHORT-URL-LENGTH-HTTPS">SHORT-URL-LENGTH-HTTPS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SHOW-INLINE-MEDIA"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SHOW-INLINE-MEDIA"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASHOW-INLINE-MEDIA">SHOW-INLINE-MEDIA</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SINCE-ID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SINCE-ID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASINCE-ID">SINCE-ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SIZE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SIZE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASIZE">SIZE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SIZES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SIZES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASIZES">SIZES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SLEEP-TIME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SLEEP-TIME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASLEEP-TIME">SLEEP-TIME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SLEEP-TIME-END"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SLEEP-TIME-END"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASLEEP-TIME-END">SLEEP-TIME-END</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SLEEP-TIME-START"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SLEEP-TIME-START"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASLEEP-TIME-START">SLEEP-TIME-START</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SLUG"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SLUG"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASLUG">SLUG</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SOURCE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SOURCE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASOURCE">SOURCE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:SOURCE-STATUS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:SOURCE-STATUS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASOURCE-STATUS">SOURCE-STATUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:START"> </a> <article id="ACCESSOR CHIRP-OBJECTS:START"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASTART">START</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:STATUS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:STATUS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASTATUS">STATUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:STREAM-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:STREAM-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ASTREAM-NAME">STREAM-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET">TARGET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET-HEADERS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET-HEADERS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET-HEADERS">TARGET-HEADERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET-METHOD"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET-METHOD"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET-METHOD">TARGET-METHOD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET-OBJECT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET-OBJECT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET-OBJECT">TARGET-OBJECT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET-PARAMETERS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET-PARAMETERS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET-PARAMETERS">TARGET-PARAMETERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TARGET-URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TARGET-URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATARGET-URL">TARGET-URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CONDITION</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TEXT"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TEXT"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATEXT">TEXT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TIME-ZONE"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TIME-ZONE"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATIME-ZONE">TIME-ZONE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TIME-ZONE-INFO"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TIME-ZONE-INFO"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATIME-ZONE-INFO">TIME-ZONE-INFO</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TIME-ZONE-NAME"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TIME-ZONE-NAME"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATIME-ZONE-NAME">TIME-ZONE-NAME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TIME-ZONE-OFFSET"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TIME-ZONE-OFFSET"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATIME-ZONE-OFFSET">TIME-ZONE-OFFSET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TRACK"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TRACK"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATRACK">TRACK</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TRANSLATOR"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TRANSLATOR"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATRANSLATOR">TRANSLATOR</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TREND"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TREND"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATREND">TREND</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TRUNCATED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TRUNCATED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATRUNCATED">TRUNCATED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:TWEETS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:TWEETS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3ATWEETS">TWEETS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:UP-TO-STATUS-ID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:UP-TO-STATUS-ID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AUP-TO-STATUS-ID">UP-TO-STATUS-ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:URI"> </a> <article id="ACCESSOR CHIRP-OBJECTS:URI"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AURI">URI</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:URL"> </a> <article id="ACCESSOR CHIRP-OBJECTS:URL"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AURL">URL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:USER"> </a> <article id="ACCESSOR CHIRP-OBJECTS:USER"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AUSER">USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:USER-ID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:USER-ID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AUSER-ID">USER-ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:USERS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:USERS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AUSERS">USERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:UTC-OFFSET"> </a> <article id="ACCESSOR CHIRP-OBJECTS:UTC-OFFSET"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AUTC-OFFSET">UTC-OFFSET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:VERIFIED"> </a> <article id="ACCESSOR CHIRP-OBJECTS:VERIFIED"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AVERIFIED">VERIFIED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:VERSION"> </a> <article id="ACCESSOR CHIRP-OBJECTS:VERSION"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AVERSION">VERSION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:VISIBILITY"> </a> <article id="ACCESSOR CHIRP-OBJECTS:VISIBILITY"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AVISIBILITY">VISIBILITY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:WANT-RETWEETS"> </a> <article id="ACCESSOR CHIRP-OBJECTS:WANT-RETWEETS"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AWANT-RETWEETS">WANT-RETWEETS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:WIDTH"> </a> <article id="ACCESSOR CHIRP-OBJECTS:WIDTH"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AWIDTH">WIDTH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:WITHHELD-IN-COUNTRIES"> </a> <article id="ACCESSOR CHIRP-OBJECTS:WITHHELD-IN-COUNTRIES"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AWITHHELD-IN-COUNTRIES">WITHHELD-IN-COUNTRIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-OBJECTS:WOEID"> </a> <article id="ACCESSOR CHIRP-OBJECTS:WOEID"> <header class="accessor"> <span class="type">accessor</span> <code>(</code><h4 class="name"><code><a href="#ACCESSOR%20CHIRP-OBJECTS%3AWOEID">WOEID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li></ul> </li><li class="package"> <h3> <a name="CHIRP-API" href="#CHIRP-API">CHIRP-API</a> <span class="nicknames">(ORG.TYMOONNEXT.CHIRP.API)</span> </h3> <ul><li> <a name="CHIRP-API:ACCOUNT/REMOVE-PROFILE-BANNER"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/REMOVE-PROFILE-BANNER"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FREMOVE-PROFILE-BANNER">ACCOUNT/REMOVE-PROFILE-BANNER</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Removes the uploaded profile banner for the authenticating user. Returns T on success.
According to spec https://dev.twitter.com/docs/api/1.1/post/account/remove_profile_banner</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/SELF"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/SELF"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FSELF">ACCOUNT/SELF</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY REFRESH-CACHE INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Alias for ACCOUNT/VERIFY-CREDENTIALS, using caching.</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/SETTINGS"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/SETTINGS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FSETTINGS">ACCOUNT/SETTINGS</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns settings (including current trend, geo and sleep time information) for the authenticating user.
According to spec https://dev.twitter.com/docs/api/1.1/get/account/settings</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/UPDATE-PROFILE"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/UPDATE-PROFILE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FUPDATE-PROFILE">ACCOUNT/UPDATE-PROFILE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY NAME URL LOCATION DESCRIPTION INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Sets values that users are able to set under the "Account" tab of their settings page. Only the parameters specified will be updated.
According to spec https://dev.twitter.com/docs/api/1.1/post/account/update_profile</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/UPDATE-PROFILE-BACKGROUND-IMAGE"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/UPDATE-PROFILE-BACKGROUND-IMAGE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FUPDATE-PROFILE-BACKGROUND-IMAGE">ACCOUNT/UPDATE-PROFILE-BACKGROUND-IMAGE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY IMAGE (TILE NIL T-V-P) (USE-IMAGE NIL I-V-P) INCLUDE-ENTITIES
(SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Updates the authenticating user's profile background image. This method can also be used to enable or disable the profile background image.
According to spec https://dev.twitter.com/docs/api/1.1/post/account/update_profile_background_image</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/UPDATE-PROFILE-BANNER"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/UPDATE-PROFILE-BANNER"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FUPDATE-PROFILE-BANNER">ACCOUNT/UPDATE-PROFILE-BANNER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">IMAGE &KEY WIDTH HEIGHT OFFSET-LEFT OFFSET-TOP</code><code>)</code> </header> <div class="docstring"><pre>Uploads a profile banner on behalf of the authenticating user. For best results, upload an <3MB image that is exactly 1252px by 626px. Returns T on success.
According to spec https://dev.twitter.com/docs/api/1.1/post/account/update_profile_banner</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/UPDATE-PROFILE-COLORS"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/UPDATE-PROFILE-COLORS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FUPDATE-PROFILE-COLORS">ACCOUNT/UPDATE-PROFILE-COLORS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY BACKGROUND-COLOR LINK-COLOR SIDEBAR-BORDER-COLOR SIDEBAR-FILL-COLOR
TEXT-COLOR INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com. Each parameter's value must be a valid hexidecimal value, and may be either three or six characters (ex: #fff or #ffffff).
According to spec https://dev.twitter.com/docs/api/1.1/post/account/update_profile_colors</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/UPDATE-PROFILE-IMAGE"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/UPDATE-PROFILE-IMAGE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FUPDATE-PROFILE-IMAGE">ACCOUNT/UPDATE-PROFILE-IMAGE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">IMAGE &KEY INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Updates the authenticating user's profile image. Note that this method expects raw multipart data, not a URL to an image.
According to spec https://dev.twitter.com/docs/api/1.1/post/account/update_profile_image</pre></div> </article> </li><li> <a name="CHIRP-API:ACCOUNT/VERIFY-CREDENTIALS"> </a> <article id="FUNCTION CHIRP-API:ACCOUNT/VERIFY-CREDENTIALS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AACCOUNT%2FVERIFY-CREDENTIALS">ACCOUNT/VERIFY-CREDENTIALS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; returns a 401 status code and an error message if not. Use this method to test if supplied user credentials are valid.
According to spec https://dev.twitter.com/docs/api/1.1/get/account/verify_credentials</pre></div> </article> </li><li> <a name="CHIRP-API:APPLICATION/RATE-LIMIT-STATUS"> </a> <article id="FUNCTION CHIRP-API:APPLICATION/RATE-LIMIT-STATUS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AAPPLICATION%2FRATE-LIMIT-STATUS">APPLICATION/RATE-LIMIT-STATUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">RESOURCES</code><code>)</code> </header> <div class="docstring"><pre>Returns the current rate limits for methods belonging to the specified resource families.
According to spec https://dev.twitter.com/docs/api/1.1/get/application/rate_limit_status</pre></div> </article> </li><li> <a name="CHIRP-API:BLOCKS/CREATE"> </a> <article id="FUNCTION CHIRP-API:BLOCKS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ABLOCKS%2FCREATE">BLOCKS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Blocks the specified user from following the authenticating user. In addition the blocked user will not show in the authenticating users mentions or timeline (unless retweeted by another user). If a follow or friend relationship exists it is destroyed.
According to spec https://dev.twitter.com/docs/api/1.1/post/blocks/create</pre></div> </article> </li><li> <a name="CHIRP-API:BLOCKS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:BLOCKS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ABLOCKS%2FDESTROY">BLOCKS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Un-blocks the user specified in the ID parameter for the authenticating user. Returns the un-blocked user in the requested format when successful. If relationships existed before the block was instated, they will not be restored.
According to spec https://dev.twitter.com/docs/api/1.1/post/blocks/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:BLOCKS/IDS"> </a> <article id="FUNCTION CHIRP-API:BLOCKS/IDS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ABLOCKS%2FIDS">BLOCKS/IDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns a list of numeric user ids the authenticating user is blocking.
According to spec https://dev.twitter.com/docs/api/1.1/get/blocks/ids</pre></div> </article> </li><li> <a name="CHIRP-API:BLOCKS/LIST"> </a> <article id="FUNCTION CHIRP-API:BLOCKS/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ABLOCKS%2FLIST">BLOCKS/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of user objects that the authenticating user is blocking.
According to spec https://dev.twitter.com/docs/api/1.1/get/blocks/list</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/ADD"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/ADD"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FADD">COLLECTIONS/ADD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">COLLECTION TWEET-ID &KEY RELATIVE-TO ABOVE</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-entries-add</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/CREATE"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FCREATE">COLLECTIONS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">NAME &KEY DESCRIPTION URL TIMELINE-ORDER</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-create
timeline-order:
curation_reverse_chron : order added (default)
tweet_chron : oldest first
tweet_reverse_chron : most recent first
</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/CURATE"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/CURATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FCURATE">COLLECTIONS/CURATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">COLLECTION OP/TWEET-ID-ALIST</code><code>)</code> </header> <div class="docstring"><pre>Curate tweets with alist that consisted of operations and tweet-id.
Example:
(defparameter *col* (collection/show "custom-123456789"))
(collections/curate *col*
'((:add 1234)
(:add 4321)
(:remove 1111)
(:add 2222)))
; => DONE
According to spec https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-entries-curate</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FDESTROY">COLLECTIONS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-destroy</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/ENTRIES"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/ENTRIES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FENTRIES">COLLECTIONS/ENTRIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">COLLECTION &KEY COUNT MAX-POSITION MIN-POSITION</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/get-collections-entries</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/LIST"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FLIST">COLLECTIONS/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER-ID/SCREEN-NAME &KEY TWEET-ID COUNT CURSOR</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/get-collections-list</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/MOVE"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/MOVE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FMOVE">COLLECTIONS/MOVE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">COLLECTION TWEET-ID RELATIVE-TO &KEY ABOVE</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-entries-move</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/REMOVE"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/REMOVE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FREMOVE">COLLECTIONS/REMOVE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">COLLECTION TWEET-ID</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-entries-remove</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/SHOW"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FSHOW">COLLECTIONS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/get-collections-show</pre></div> </article> </li><li> <a name="CHIRP-API:COLLECTIONS/UPDATE"> </a> <article id="FUNCTION CHIRP-API:COLLECTIONS/UPDATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ACOLLECTIONS%2FUPDATE">COLLECTIONS/UPDATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY NAME DESCRIPTION URL</code><code>)</code> </header> <div class="docstring"><pre>https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/post-collections-update</pre></div> </article> </li><li> <a name="CHIRP-API:DIRECT-MESSAGES"> </a> <article id="FUNCTION CHIRP-API:DIRECT-MESSAGES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ADIRECT-MESSAGES">DIRECT-MESSAGES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SINCE-ID MAX-ID (COUNT 20) (INCLUDE-ENTITIES T) SKIP-STATUS (FULL-TEXT T)</code><code>)</code> </header> <div class="docstring"><pre>Returns the 20 most recent direct messages sent to the authenticating user. Includes detailed information about the sender and recipient user. You can request up to 200 direct messages per call, up to a maximum of 800 incoming DMs.
According to spec https://dev.twitter.com/docs/api/1.1/get/direct_messages</pre></div> </article> </li><li> <a name="CHIRP-API:DIRECT-MESSAGES/DESTROY"> </a> <article id="FUNCTION CHIRP-API:DIRECT-MESSAGES/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ADIRECT-MESSAGES%2FDESTROY">DIRECT-MESSAGES/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Destroys the direct message specified in the required ID parameter. The authenticating user must be the recipient of the specified direct message.
According to spec https://dev.twitter.com/docs/api/1.1/post/direct_messages/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:DIRECT-MESSAGES/NEW"> </a> <article id="FUNCTION CHIRP-API:DIRECT-MESSAGES/NEW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ADIRECT-MESSAGES%2FNEW">DIRECT-MESSAGES/NEW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">TEXT &KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Sends a new direct message to the specified user from the authenticating user. Requires both the user and text parameters and must be a POST. Returns the sent message in the requested format if successful.
According to spec https://dev.twitter.com/docs/api/1.1/post/direct_messages/new</pre></div> </article> </li><li> <a name="CHIRP-API:DIRECT-MESSAGES/SENT"> </a> <article id="FUNCTION CHIRP-API:DIRECT-MESSAGES/SENT"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ADIRECT-MESSAGES%2FSENT">DIRECT-MESSAGES/SENT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SINCE-ID MAX-ID (COUNT 20) (PAGE 0) (INCLUDE-ENTITIES T) (FULL-TEXT T)</code><code>)</code> </header> <div class="docstring"><pre>Returns the 20 most recent direct messages sent by the authenticating user. Includes detailed information about the sender and recipient user. You can request up to 200 direct messages per call, up to a maximum of 800 outgoing DMs.
According to spec https://dev.twitter.com/docs/api/1.1/get/direct_messages/sent</pre></div> </article> </li><li> <a name="CHIRP-API:DIRECT-MESSAGES/SHOW"> </a> <article id="FUNCTION CHIRP-API:DIRECT-MESSAGES/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ADIRECT-MESSAGES%2FSHOW">DIRECT-MESSAGES/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY (FULL-TEXT T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a single direct message, specified by an id parameter. Like the direct-messages request, this method will include the user objects of the sender and recipient.
According to spec https://dev.twitter.com/docs/api/1.1/get/direct_messages/show</pre></div> </article> </li><li> <a name="CHIRP-API:FAVORITES/CREATE"> </a> <article id="FUNCTION CHIRP-API:FAVORITES/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFAVORITES%2FCREATE">FAVORITES/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Favorites the status specified in the ID parameter as the authenticating user. Returns the favorite status when successful.
According to spec https://dev.twitter.com/docs/api/1.1/post/favorites/create</pre></div> </article> </li><li> <a name="CHIRP-API:FAVORITES/DESTROY"> </a> <article id="FUNCTION CHIRP-API:FAVORITES/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFAVORITES%2FDESTROY">FAVORITES/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Un-favorites the status specified in the ID parameter as the authenticating user. Returns the un-favorited status in the requested format when successful.
According to spec https://dev.twitter.com/docs/api/1.1/post/favorites/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:FAVORITES/LIST"> </a> <article id="FUNCTION CHIRP-API:FAVORITES/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFAVORITES%2FLIST">FAVORITES/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME (COUNT 20) SINCE-ID MAX-ID (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns the 20 most recent Tweets favorited by the authenticating or specified user.
According to spec https://dev.twitter.com/docs/api/1.1/get/favorites/list</pre></div> </article> </li><li> <a name="CHIRP-API:FOLLOWERS/IDS"> </a> <article id="FUNCTION CHIRP-API:FOLLOWERS/IDS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFOLLOWERS%2FIDS">FOLLOWERS/IDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of user IDs for every user following the specified user.
According to spec https://dev.twitter.com/docs/api/1.1/get/followers/ids</pre></div> </article> </li><li> <a name="CHIRP-API:FOLLOWERS/LIST"> </a> <article id="FUNCTION CHIRP-API:FOLLOWERS/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFOLLOWERS%2FLIST">FOLLOWERS/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME (SKIP-STATUS T) (INCLUDE-USER-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of user objects for users following the specified user.
According to spec https://dev.twitter.com/docs/api/1.1/get/followers/list</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDS/IDS"> </a> <article id="FUNCTION CHIRP-API:FRIENDS/IDS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDS%2FIDS">FRIENDS/IDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of user IDs for every user the specified user is following (otherwise known as their "friends").
According to spec https://dev.twitter.com/docs/api/1.1/get/friends/ids</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDS/LIST"> </a> <article id="FUNCTION CHIRP-API:FRIENDS/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDS%2FLIST">FRIENDS/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME (SKIP-STATUS T) (INCLUDE-USER-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of user objects for every user the specified user is following (otherwise known as their "friends").
According to spec https://dev.twitter.com/docs/api/1.1/get/friends/list</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/CREATE"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FCREATE">FRIENDSHIPS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID FOLLOW</code><code>)</code> </header> <div class="docstring"><pre>Allows the authenticating users to follow the user specified in the ID parameter.
According to spec https://dev.twitter.com/docs/api/1.1/post/friendships/create</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FDESTROY">FRIENDSHIPS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID</code><code>)</code> </header> <div class="docstring"><pre>Allows the authenticating user to unfollow the user specified in the ID parameter.
According to spec https://dev.twitter.com/docs/api/1.1/post/friendships/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/INCOMING"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/INCOMING"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FINCOMING">FRIENDSHIPS/INCOMING</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of numeric IDs for every user who has a pending request to follow the authenticating user.
According to spec https://dev.twitter.com/docs/api/1.1/get/friendships/incoming</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/LOOKUP"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/LOOKUP"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FLOOKUP">FRIENDSHIPS/LOOKUP</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAMES USER-IDS</code><code>)</code> </header> <div class="docstring"><pre>Returns the relationships of the authenticating user to the list of up to 100 screen-names or user-ids provided.
According to spec https://dev.twitter.com/docs/api/1.1/get/friendships/lookup</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/NO-RETWEETS/IDS"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/NO-RETWEETS/IDS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FNO-RETWEETS%2FIDS">FRIENDSHIPS/NO-RETWEETS/IDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of user_ids that the currently authenticated user does not want to receive retweets from.
According to spec https://dev.twitter.com/docs/api/1.1/get/friendships/no_retweets/ids</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/OUTGOING"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/OUTGOING"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FOUTGOING">FRIENDSHIPS/OUTGOING</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of numeric IDs for every protected user for whom the authenticating user has a pending follow request.
According to spec https://dev.twitter.com/docs/api/1.1/get/friendships/outgoing</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/SHOW"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FSHOW">FRIENDSHIPS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SOURCE-SCREEN-NAME SOURCE-USER-ID TARGET-SCREEN-NAME TARGET-USER-ID</code><code>)</code> </header> <div class="docstring"><pre>Returns detailed information about the relationship between two arbitrary users.
The first return value is the relationship object "target", the second "source".
According to spec https://dev.twitter.com/docs/api/1.1/get/friendships/show</pre></div> </article> </li><li> <a name="CHIRP-API:FRIENDSHIPS/UPDATE"> </a> <article id="FUNCTION CHIRP-API:FRIENDSHIPS/UPDATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AFRIENDSHIPS%2FUPDATE">FRIENDSHIPS/UPDATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID (DEVICE NIL D-P) (RETWEETS NIL R-P)</code><code>)</code> </header> <div class="docstring"><pre>Allows one to enable or disable retweets and device notifications from the specified user.
The first return value is the relationship object "target", the second "source".
According to spec https://dev.twitter.com/docs/api/1.1/post/friendships/update</pre></div> </article> </li><li> <a name="CHIRP-API:GEO/ID"> </a> <article id="FUNCTION CHIRP-API:GEO/ID"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AGEO%2FID">GEO/ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">PLACE-ID</code><code>)</code> </header> <div class="docstring"><pre>Returns a location object containing all the information about a known place.
According to spec https://dev.twitter.com/docs/api/1.1/param/geo/id/%3Aplace_id</pre></div> </article> </li><li> <a name="CHIRP-API:GEO/REVERSE-GEOCODE"> </a> <article id="FUNCTION CHIRP-API:GEO/REVERSE-GEOCODE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AGEO%2FREVERSE-GEOCODE">GEO/REVERSE-GEOCODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LATITUDE LONGITUDE &KEY ACCURACY GRANULARITY MAX-RESULTS</code><code>)</code> </header> <div class="docstring"><pre>Given a latitude and a longitude, searches for up to 20 places that can be used as a place_id when updating a status.
According to spec https://dev.twitter.com/docs/api/1.1/get/geo/reverse_geocode</pre></div> </article> </li><li> <a name="CHIRP-API:GEO/SEARCH"> </a> <article id="FUNCTION CHIRP-API:GEO/SEARCH"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AGEO%2FSEARCH">GEO/SEARCH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LATITUDE LONGITUDE QUERY IP ACCURACY GRANULARITY MAX-RESULTS
CONTAINED-WITHIN ATTRIBUTES</code><code>)</code> </header> <div class="docstring"><pre>Search for places that can be attached to a statuses/update. Given a latitude and a longitude pair, an IP address, or a name, this request will return a list of all the valid places that can be used as the place_id when updating a status.
According to spec https://dev.twitter.com/docs/api/1.1/get/geo/search</pre></div> </article> </li><li> <a name="CHIRP-API:GEO/SIMILAR-PLACES"> </a> <article id="FUNCTION CHIRP-API:GEO/SIMILAR-PLACES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AGEO%2FSIMILAR-PLACES">GEO/SIMILAR-PLACES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LATITUDE LONGITUDE NAME &KEY CONTAINED-WITHIN ATTRIBUTES</code><code>)</code> </header> <div class="docstring"><pre>Locates places near the given coordinates which are similar in name.
According to spec https://dev.twitter.com/docs/api/1.1/get/geo/similar_places</pre></div> </article> </li><li> <a name="CHIRP-API:HELP/CONFIGURATION"> </a> <article id="FUNCTION CHIRP-API:HELP/CONFIGURATION"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AHELP%2FCONFIGURATION">HELP/CONFIGURATION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY REFRESH-CACHE</code><code>)</code> </header> <div class="docstring"><pre>Returns the current configuration used by Twitter including twitter.com slugs which are not usernames, maximum photo resolutions, and t.co URL lengths.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/configuration</pre></div> </article> </li><li> <a name="CHIRP-API:HELP/LANGUAGES"> </a> <article id="FUNCTION CHIRP-API:HELP/LANGUAGES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AHELP%2FLANGUAGES">HELP/LANGUAGES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY REFRESH-CACHE</code><code>)</code> </header> <div class="docstring"><pre>Returns the list of languages supported by Twitter along with their ISO 639-1 code. The ISO 639-1 code is the two letter value to use if you include lang with any of your requests.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/languages</pre></div> </article> </li><li> <a name="CHIRP-API:HELP/PRIVACY"> </a> <article id="FUNCTION CHIRP-API:HELP/PRIVACY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AHELP%2FPRIVACY">HELP/PRIVACY</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns Twitter's Privacy Policy.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/privacy</pre></div> </article> </li><li> <a name="CHIRP-API:HELP/TOS"> </a> <article id="FUNCTION CHIRP-API:HELP/TOS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AHELP%2FTOS">HELP/TOS</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns the Twitter Terms of Service in the requested format. These are not the same as the Developer Rules of the Road.
According to spec https://dev.twitter.com/docs/api/1.1/get/help/tos</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/CREATE"> </a> <article id="FUNCTION CHIRP-API:LISTS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FCREATE">LISTS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">NAME &KEY (MODE :PUBLIC) DESCRIPTION</code><code>)</code> </header> <div class="docstring"><pre>Creates a new list for the authenticated user. Note that you can't create more than 20 lists per account.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/create</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:LISTS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FDESTROY">LISTS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Deletes the specified list. The authenticated user must own the list to be able to destroy it.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/LIST"> </a> <article id="FUNCTION CHIRP-API:LISTS/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FLIST">LISTS/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME REVERSE</code><code>)</code> </header> <div class="docstring"><pre>Returns all lists the authenticating or specified user subscribes to, including their own. The user is specified using the user_id or screen_name parameters. If no user is given, the authenticating user is used.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/list</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS">LISTS/MEMBERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID (INCLUDE-ENTITIES T) SKIP-STATUS</code><code>)</code> </header> <div class="docstring"><pre>Returns the members of the specified list. Private list members will only be shown if the authenticated user owns the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/members</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS/CREATE"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS%2FCREATE">LISTS/MEMBERS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Add a member to a list. The authenticated user must own the list to be able to add members to it. Note that lists can't have more than 500 members.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/members/create</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS/CREATE-ALL"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS/CREATE-ALL"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS%2FCREATE-ALL">LISTS/MEMBERS/CREATE-ALL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-IDS SCREEN-NAMES LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Note that lists can't have more than 5,000 members, and you are limited to adding up to 100 members to a list at a time with this method.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/members/create_all</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS%2FDESTROY">LISTS/MEMBERS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/members/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS/DESTROY-ALL"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS/DESTROY-ALL"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS%2FDESTROY-ALL">LISTS/MEMBERS/DESTROY-ALL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-IDS SCREEN-NAMES LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Removes multiple members from a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to remove members from it. Note that lists can't have more than 500 members, and you are limited to removing up to 100 members to a list at a time with this method.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/members/destroy_all</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERS/SHOW"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERS%2FSHOW">LISTS/MEMBERS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID
(INCLUDE-ENTITIES T) SKIP-STATUS</code><code>)</code> </header> <div class="docstring"><pre>Check if the specified user is a member of the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/members/show</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/MEMBERSHIPS"> </a> <article id="FUNCTION CHIRP-API:LISTS/MEMBERSHIPS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FMEMBERSHIPS">LISTS/MEMBERSHIPS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Returns the lists the specified user has been added to. If user_id or screen_name are not provided the memberships for the authenticating user are returned.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/memberships</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/OWNERSHIPS"> </a> <article id="FUNCTION CHIRP-API:LISTS/OWNERSHIPS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FOWNERSHIPS">LISTS/OWNERSHIPS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Returns the lists owned by the specified Twitter user. Private lists will only be shown if the authenticated user is also the owner of the lists.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/ownerships</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SHOW"> </a> <article id="FUNCTION CHIRP-API:LISTS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSHOW">LISTS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Returns the specified list. Private lists will only be shown if the authenticated user owns the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/show</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/STATUSES"> </a> <article id="FUNCTION CHIRP-API:LISTS/STATUSES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSTATUSES">LISTS/STATUSES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID SINCE-ID MAX-ID (COUNT 20)
(INCLUDE-ENTITIES T) INCLUDE-RTS</code><code>)</code> </header> <div class="docstring"><pre>Returns a timeline of tweets authored by members of the specified list. Retweets are included by default. Use the include_rts=false parameter to omit retweets.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/statuses</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SUBSCRIBERS"> </a> <article id="FUNCTION CHIRP-API:LISTS/SUBSCRIBERS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSUBSCRIBERS">LISTS/SUBSCRIBERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID (INCLUDE-ENTITIES T) SKIP-STATUS</code><code>)</code> </header> <div class="docstring"><pre>Returns the subscribers of the specified list. Private list subscribers will only be shown if the authenticated user owns the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/subscribers</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SUBSCRIBERS/CREATE"> </a> <article id="FUNCTION CHIRP-API:LISTS/SUBSCRIBERS/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSUBSCRIBERS%2FCREATE">LISTS/SUBSCRIBERS/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Subscribes the authenticated user to the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/subscribers/create</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SUBSCRIBERS/DESTROY"> </a> <article id="FUNCTION CHIRP-API:LISTS/SUBSCRIBERS/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSUBSCRIBERS%2FDESTROY">LISTS/SUBSCRIBERS/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID</code><code>)</code> </header> <div class="docstring"><pre>Unsubscribes the authenticated user from the specified list.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/subscribers/destroy</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SUBSCRIBERS/SHOW"> </a> <article id="FUNCTION CHIRP-API:LISTS/SUBSCRIBERS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSUBSCRIBERS%2FSHOW">LISTS/SUBSCRIBERS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID
(INCLUDE-ENTITIES T) SKIP-STATUS</code><code>)</code> </header> <div class="docstring"><pre>Check if the specified user is a subscriber of the specified list. Returns the user if they are subscriber.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/subscribers/show</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/SUBSCRIPTIONS"> </a> <article id="FUNCTION CHIRP-API:LISTS/SUBSCRIPTIONS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FSUBSCRIPTIONS">LISTS/SUBSCRIPTIONS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Obtain a collection of the lists the specified user is subscribed to, 20 lists per page by default. Does not include the user's own lists.
According to spec https://dev.twitter.com/docs/api/1.1/get/lists/subscriptions</pre></div> </article> </li><li> <a name="CHIRP-API:LISTS/UPDATE"> </a> <article id="FUNCTION CHIRP-API:LISTS/UPDATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ALISTS%2FUPDATE">LISTS/UPDATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LIST-ID SLUG OWNER-SCREEN-NAME OWNER-ID NAME MODE DESCRIPTION</code><code>)</code> </header> <div class="docstring"><pre>Updates the specified list. The authenticated user must own the list to be able to update it.
According to spec https://dev.twitter.com/docs/api/1.1/post/lists/update</pre></div> </article> </li><li> <a name="CHIRP-API:OAUTH/ACCESS-TOKEN"> </a> <article id="FUNCTION CHIRP-API:OAUTH/ACCESS-TOKEN"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AOAUTH%2FACCESS-TOKEN">OAUTH/ACCESS-TOKEN</a></code></h4> <code class="qualifiers"></code> <code class="arguments">VERIFIER</code><code>)</code> </header> <div class="docstring"><pre>Turn the tokens received through the authentication into an access token.
According to spec https://dev.twitter.com/docs/auth/implementing-sign-twitter</pre></div> </article> </li><li> <a name="CHIRP-API:OAUTH/AUTHENTICATE"> </a> <article id="FUNCTION CHIRP-API:OAUTH/AUTHENTICATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AOAUTH%2FAUTHENTICATE">OAUTH/AUTHENTICATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CALLBACK-URL</code><code>)</code> </header> <div class="docstring"><pre>Initiate the authentication through the redirect mechanism.
Returns an URL that the user has to open in the browser.
Upon successful authentication, the page should redirect back
to the specified callback url. This callback endpoint should then
pass the proper parameters to COMPLETE-AUTHENTICATION.
According to spec https://dev.twitter.com/docs/auth/implementing-sign-twitter</pre></div> </article> </li><li> <a name="CHIRP-API:OAUTH/AUTHORIZE"> </a> <article id="FUNCTION CHIRP-API:OAUTH/AUTHORIZE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AOAUTH%2FAUTHORIZE">OAUTH/AUTHORIZE</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Initiate the authentication through the PIN mechanism.
Returns an URL that the user has to open in the browser.
This page should, upon successful authentication, return a PIN
that has to be initialized by passing it to COMPLETE-AUTHENTICATION.
According to spec https://dev.twitter.com/docs/auth/pin-based-authorization</pre></div> </article> </li><li> <a name="CHIRP-API:OAUTH/REQUEST-TOKEN"> </a> <article id="FUNCTION CHIRP-API:OAUTH/REQUEST-TOKEN"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AOAUTH%2FREQUEST-TOKEN">OAUTH/REQUEST-TOKEN</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CALLBACK</code><code>)</code> </header> <div class="docstring"><pre>Query for a request token using the specified callback.
Returns an ALIST containing :OAUTH-TOKEN, :OAUTH-TOKEN-SECRET and
:OAUTH-CALLBACK-CONFIRMED, the first two being strings and the last a boolean.
According to spec https://dev.twitter.com/docs/auth/implementing-sign-twitter</pre></div> </article> </li><li> <a name="CHIRP-API:SAVED-SEARCHES/CREATE"> </a> <article id="FUNCTION CHIRP-API:SAVED-SEARCHES/CREATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASAVED-SEARCHES%2FCREATE">SAVED-SEARCHES/CREATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">QUERY</code><code>)</code> </header> <div class="docstring"><pre>Create a new saved search for the authenticated user. A user may only have 25 saved searches.
According to spec https://dev.twitter.com/docs/api/1.1/post/saved_searches/create</pre></div> </article> </li><li> <a name="CHIRP-API:SAVED-SEARCHES/DESTROY/ID"> </a> <article id="FUNCTION CHIRP-API:SAVED-SEARCHES/DESTROY/ID"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASAVED-SEARCHES%2FDESTROY%2FID">SAVED-SEARCHES/DESTROY/ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID</code><code>)</code> </header> <div class="docstring"><pre>Destroys a saved search for the authenticating user. The authenticating user must be the owner of saved search id being destroyed.
According to spec https://dev.twitter.com/docs/api/1.1/post/saved_searches/destroy/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:SAVED-SEARCHES/LIST"> </a> <article id="FUNCTION CHIRP-API:SAVED-SEARCHES/LIST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASAVED-SEARCHES%2FLIST">SAVED-SEARCHES/LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns the authenticated user's saved search queries.
According to spec https://dev.twitter.com/docs/api/1.1/get/saved_searches/list</pre></div> </article> </li><li> <a name="CHIRP-API:SAVED-SEARCHES/SHOW/ID"> </a> <article id="FUNCTION CHIRP-API:SAVED-SEARCHES/SHOW/ID"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASAVED-SEARCHES%2FSHOW%2FID">SAVED-SEARCHES/SHOW/ID</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID</code><code>)</code> </header> <div class="docstring"><pre>Retrieve the information for the saved search represented by the given id. The authenticating user must be the owner of saved search ID being requested.
According to spec https://dev.twitter.com/docs/api/1.1/get/saved_searches/show/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:SEARCH/TWEETS"> </a> <article id="FUNCTION CHIRP-API:SEARCH/TWEETS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASEARCH%2FTWEETS">SEARCH/TWEETS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">QUERY &KEY LATITUDE LONGITUDE RADIUS LOCALE LANGUAGE (RESULT-TYPE :MIXED)
(COUNT 15) UNTIL SINCE-ID MAX-ID (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of relevant Tweets matching a specified query and some search metadata as a second value.
According to spec https://dev.twitter.com/docs/api/1.1/get/search/tweets</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/DESTROY"> </a> <article id="FUNCTION CHIRP-API:STATUSES/DESTROY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FDESTROY">STATUSES/DESTROY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY TRIM-USER</code><code>)</code> </header> <div class="docstring"><pre>Destroys the status specified by the required ID parameter. The authenticating user must be the author of the specified status. Returns the destroyed status if successful.
According to spec https://dev.twitter.com/docs/api/1.1/post/statuses/destroy/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/HOME-TIMELINE"> </a> <article id="FUNCTION CHIRP-API:STATUSES/HOME-TIMELINE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FHOME-TIMELINE">STATUSES/HOME-TIMELINE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY (COUNT 20) SINCE-ID MAX-ID TRIM-USER EXCLUDE-REPLIES (INCLUDE-ENTITIES T)
CONTRIBUTOR-DETAILS</code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of the most recent Tweets and retweets posted by the authenticating user and the users they follow. The home timeline is central to how most users interact with the Twitter service.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/home_timeline</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/MENTIONS-TIMELINE"> </a> <article id="FUNCTION CHIRP-API:STATUSES/MENTIONS-TIMELINE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FMENTIONS-TIMELINE">STATUSES/MENTIONS-TIMELINE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY (COUNT 20) SINCE-ID MAX-ID TRIM-USER (INCLUDE-ENTITIES T)
CONTRIBUTOR-DETAILS</code><code>)</code> </header> <div class="docstring"><pre>Returns the 20 most recent mentions (tweets containing a users's @screen_name) for the authenticating user.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/mentions_timeline</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/OEMBED"> </a> <article id="FUNCTION CHIRP-API:STATUSES/OEMBED"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FOEMBED">STATUSES/OEMBED</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID URL &KEY MAX-WIDTH HIDE-MEDIA HIDE-THREAD OMIT-SCRIPT (ALIGN :NONE) RELATED
LANGUAGE</code><code>)</code> </header> <div class="docstring"><pre>Returns information allowing the creation of an embedded representation of a Tweet on third party sites. See the oEmbed specification for information about the response format.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/oembed</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/RETWEET"> </a> <article id="FUNCTION CHIRP-API:STATUSES/RETWEET"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FRETWEET">STATUSES/RETWEET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY TRIM-USER</code><code>)</code> </header> <div class="docstring"><pre>Retweets a tweet. Returns the original tweet with retweet details embedded.
According to spec https://dev.twitter.com/docs/api/1.1/post/statuses/retweet/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/RETWEETERS/IDS"> </a> <article id="FUNCTION CHIRP-API:STATUSES/RETWEETERS/IDS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FRETWEETERS%2FIDS">STATUSES/RETWEETERS/IDS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID</code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of up to 100 user IDs belonging to users who have retweeted the tweet specified by the id parameter.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/retweeters/ids</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/RETWEETS"> </a> <article id="FUNCTION CHIRP-API:STATUSES/RETWEETS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FRETWEETS">STATUSES/RETWEETS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY (COUNT 100) TRIM-USER</code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of the 100 most recent retweets of the tweet specified by the id parameter.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/retweets/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/RETWEETS-OF-ME"> </a> <article id="FUNCTION CHIRP-API:STATUSES/RETWEETS-OF-ME"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FRETWEETS-OF-ME">STATUSES/RETWEETS-OF-ME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY (COUNT 20) SINCE-ID MAX-ID TRIM-USER (INCLUDE-ENTITIES T)
(INCLUDE-USER-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns the most recent tweets authored by the authenticating user that have been retweeted by others. This timeline is a subset of the user's GET statuses/user_timeline.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/retweets_of_me</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/SHOW"> </a> <article id="FUNCTION CHIRP-API:STATUSES/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FSHOW">STATUSES/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">ID &KEY TRIM-USER INCLUDE-MY-RETWEET (INCLUDE-ENTITIES T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a single Tweet, specified by the id parameter. The Tweet's author will also be embedded within the tweet.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/show/%3Aid</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/UPDATE"> </a> <article id="FUNCTION CHIRP-API:STATUSES/UPDATE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FUPDATE">STATUSES/UPDATE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS &KEY REPLY-TO LATITUDE LONGITUDE PLACE-ID DISPLAY-COORDINATES TRIM-USER</code><code>)</code> </header> <div class="docstring"><pre>Updates the authenticating user's current status, also known as tweeting. To upload an image to accompany the tweet, use POST statuses/update_with_media.
According to spec https://dev.twitter.com/docs/api/1.1/post/statuses/update</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/UPDATE-WITH-MEDIA"> </a> <article id="FUNCTION CHIRP-API:STATUSES/UPDATE-WITH-MEDIA"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FUPDATE-WITH-MEDIA">STATUSES/UPDATE-WITH-MEDIA</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS MEDIA &KEY POSSIBLY-SENSITIVE REPLY-TO LATITUDE LONGITUDE PLACE-ID
DISPLAY-COORDINATES TRIM-USER</code><code>)</code> </header> <div class="docstring"><pre>Updates the authenticating user's current status and attaches media for upload. In other words, it creates a Tweet with a picture attached. MEDIA is either a pathname, usb-8 array or a base64-encoded string, or a list thereof.
According to spec https://dev.twitter.com/docs/api/1.1/post/statuses/update_with_media</pre></div> </article> </li><li> <a name="CHIRP-API:STATUSES/USER-TIMELINE"> </a> <article id="FUNCTION CHIRP-API:STATUSES/USER-TIMELINE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTATUSES%2FUSER-TIMELINE">STATUSES/USER-TIMELINE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME (COUNT 20) SINCE-ID MAX-ID TRIM-USER EXCLUDE-REPLIES
(INCLUDE-ENTITIES T) CONTRIBUTOR-DETAILS (INCLUDE-RTS T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a collection of the most recent Tweets posted by the user indicated by the screen_name or user_id parameters.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline</pre></div> </article> </li><li> <a name="CHIRP-API:STREAM/SITE"> </a> <article id="FUNCTION CHIRP-API:STREAM/SITE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTREAM%2FSITE">STREAM/SITE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">HANDLER-FUNCTION FOLLOW &KEY STALL-WARNINGS (FILTER-LEVEL :NONE) LANGUAGE
(WITH :FOLLOW) REPLIES COUNT</code><code>)</code> </header> <div class="docstring"><pre>Streams messages for a set of users, as described in Site streams.
See <a href="NIL">STREAM/USER.</a>
According to spec https://dev.twitter.com/docs/api/1.1/get/site
https://dev.twitter.com/docs/streaming-apis/streams/site
https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-API:STREAM/STATUSES/FILTER"> </a> <article id="FUNCTION CHIRP-API:STREAM/STATUSES/FILTER"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTREAM%2FSTATUSES%2FFILTER">STREAM/STATUSES/FILTER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">HANDLER-FUNCTION &KEY FOLLOW TRACK LOCATIONS STALL-WARNINGS
(FILTER-LEVEL :NONE) LANGUAGE COUNT</code><code>)</code> </header> <div class="docstring"><pre>Returns public statuses that match one or more filter predicates. Multiple parameters may be specified which allows most clients to use a single connection to the Streaming API. Both GET and POST requests are supported, but GET requests with too many parameters may cause the request to be rejected for excessive URL length. Use a POST request to avoid long URLs.
See <a href="NIL">STREAM/USER.</a>
According to spec https://dev.twitter.com/docs/api/1.1/post/statuses/filter
https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-API:STREAM/STATUSES/FIREHOSE"> </a> <article id="FUNCTION CHIRP-API:STREAM/STATUSES/FIREHOSE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTREAM%2FSTATUSES%2FFIREHOSE">STREAM/STATUSES/FIREHOSE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">HANDLER-FUNCTION &KEY STALL-WARNINGS (FILTER-LEVEL :NONE) LANGUAGE COUNT</code><code>)</code> </header> <div class="docstring"><pre>Returns all public statuses. Few applications require this level of access. Creative use of a combination of other resources and various access levels can satisfy nearly every application use case.
This endpoint requires special permission to access.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/firehose
https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-API:STREAM/STATUSES/SAMPLE"> </a> <article id="FUNCTION CHIRP-API:STREAM/STATUSES/SAMPLE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTREAM%2FSTATUSES%2FSAMPLE">STREAM/STATUSES/SAMPLE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">HANDLER-FUNCTION &KEY STALL-WARNINGS (FILTER-LEVEL :NONE) LANGUAGE COUNT</code><code>)</code> </header> <div class="docstring"><pre>Returns a small random sample of all public statuses. The Tweets returned by the default access level are the same, so if two different clients connect to this endpoint, they will see the same Tweets.
According to spec https://dev.twitter.com/docs/api/1.1/get/statuses/sample
https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-API:STREAM/USER"> </a> <article id="FUNCTION CHIRP-API:STREAM/USER"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ASTREAM%2FUSER">STREAM/USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">HANDLER-FUNCTION &KEY STALL-WARNINGS (FILTER-LEVEL :NONE) LANGUAGE
(WITH :USER) REPLIES COUNT</code><code>)</code> </header> <div class="docstring"><pre>Streams messages for a single user, as described in User streams.
Each line is parsed into an appropriate object (NIL for empty lines) and passed to the handler function.
This is done as long as the handler function returns a non-NIL value. Once the handler returns NIL,
the loop is stopped and the stream is closed.
According to spec https://dev.twitter.com/docs/api/1.1/get/user
https://dev.twitter.com/docs/streaming-apis/streams/user
https://dev.twitter.com/docs/streaming-apis/messages</pre></div> </article> </li><li> <a name="CHIRP-API:TRENDS/AVAILABLE"> </a> <article id="FUNCTION CHIRP-API:TRENDS/AVAILABLE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ATRENDS%2FAVAILABLE">TRENDS/AVAILABLE</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns the locations that Twitter has trending topic information for.
According to spec https://api.twitter.com/1.1/trends/available.json</pre></div> </article> </li><li> <a name="CHIRP-API:TRENDS/CLOSEST"> </a> <article id="FUNCTION CHIRP-API:TRENDS/CLOSEST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ATRENDS%2FCLOSEST">TRENDS/CLOSEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LATITUDE LONGITUDE</code><code>)</code> </header> <div class="docstring"><pre>Returns the locations that Twitter has trending topic information for, closest to a specified location.
According to spec https://dev.twitter.com/docs/api/1.1/get/trends/closest</pre></div> </article> </li><li> <a name="CHIRP-API:TRENDS/PLACE"> </a> <article id="FUNCTION CHIRP-API:TRENDS/PLACE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3ATRENDS%2FPLACE">TRENDS/PLACE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">WOEID &KEY EXCLUDE-HASHTAGS</code><code>)</code> </header> <div class="docstring"><pre>Returns the top 10 trending topics for a specific WOEID, if trending information is available for it.
According to spec https://api.twitter.com/1.1/trends/place.json</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/CONTRIBUTEES"> </a> <article id="FUNCTION CHIRP-API:USERS/CONTRIBUTEES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FCONTRIBUTEES">USERS/CONTRIBUTEES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of users that the specified user can "contribute" to.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/contributees</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/CONTRIBUTORS"> </a> <article id="FUNCTION CHIRP-API:USERS/CONTRIBUTORS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FCONTRIBUTORS">USERS/CONTRIBUTORS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME INCLUDE-ENTITIES (SKIP-STATUS T)</code><code>)</code> </header> <div class="docstring"><pre>Returns a list of users who can contribute to the specified account.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/contributors</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/LOOKUP"> </a> <article id="FUNCTION CHIRP-API:USERS/LOOKUP"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FLOOKUP">USERS/LOOKUP</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID INCLUDE-ENTITIES</code><code>)</code> </header> <div class="docstring"><pre>Returns fully-hydrated user objects for up to 100 users per request, as specified by the lists passed to the user_id and/or screen_name parameters.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/lookup</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/PROFILE-BANNER"> </a> <article id="FUNCTION CHIRP-API:USERS/PROFILE-BANNER"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FPROFILE-BANNER">USERS/PROFILE-BANNER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Returns a map of the available size variations of the specified user's profile banner. If the user has not uploaded a profile banner, a HTTP 404 will be served instead. This method can be used instead of string manipulation on the profile_banner_url returned in user objects as described in User Profile Images and Banners.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/profile_banner</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/REPORT-SPAM"> </a> <article id="FUNCTION CHIRP-API:USERS/REPORT-SPAM"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FREPORT-SPAM">USERS/REPORT-SPAM</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY USER-ID SCREEN-NAME</code><code>)</code> </header> <div class="docstring"><pre>Report the specified user as a spam account to Twitter. Additionally performs the equivalent of POST blocks/create on behalf of the authenticated user.
According to spec https://dev.twitter.com/docs/api/1.1/post/users/report_spam</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/SEARCH"> </a> <article id="FUNCTION CHIRP-API:USERS/SEARCH"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FSEARCH">USERS/SEARCH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">QUERY &KEY (PAGE 1) (COUNT 5) INCLUDE-ENTITIES</code><code>)</code> </header> <div class="docstring"><pre>Provides a simple, relevance-based search interface to public user accounts on Twitter. Try querying by topical interest, full name, company name, location, or other criteria. Exact match searches are not supported.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/search</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/SHOW"> </a> <article id="FUNCTION CHIRP-API:USERS/SHOW"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FSHOW">USERS/SHOW</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY SCREEN-NAME USER-ID INCLUDE-ENTITIES</code><code>)</code> </header> <div class="docstring"><pre>Returns a variety of information about the user specified by the required user_id or screen_name parameter. The author's most recent Tweet will be returned inline when possible.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/show</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/SUGGESTIONS"> </a> <article id="FUNCTION CHIRP-API:USERS/SUGGESTIONS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FSUGGESTIONS">USERS/SUGGESTIONS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY LANGUAGE</code><code>)</code> </header> <div class="docstring"><pre>Access to Twitter's suggested user list. This returns the list of suggested user categories. The category can be used in GET users/suggestions/:slug to get the users in that category.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/suggestions</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/SUGGESTIONS/SLUG"> </a> <article id="FUNCTION CHIRP-API:USERS/SUGGESTIONS/SLUG"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FSUGGESTIONS%2FSLUG">USERS/SUGGESTIONS/SLUG</a></code></h4> <code class="qualifiers"></code> <code class="arguments">SLUG &KEY LANGUAGE</code><code>)</code> </header> <div class="docstring"><pre>Access the users in a given category of the Twitter suggested user list.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/suggestions/%3Aslug</pre></div> </article> </li><li> <a name="CHIRP-API:USERS/SUGGESTIONS/SLUG/MEMBERS"> </a> <article id="FUNCTION CHIRP-API:USERS/SUGGESTIONS/SLUG/MEMBERS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-API%3AUSERS%2FSUGGESTIONS%2FSLUG%2FMEMBERS">USERS/SUGGESTIONS/SLUG/MEMBERS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">SLUG</code><code>)</code> </header> <div class="docstring"><pre>Access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user.
According to spec https://dev.twitter.com/docs/api/1.1/get/users/suggestions/%3Aslug/members</pre></div> </article> </li></ul> </li><li class="package"> <h3> <a name="CHIRP-EXTRA" href="#CHIRP-EXTRA">CHIRP-EXTRA</a> <span class="nicknames">(ORG.TYMOONNEXT.CHIRP.EXTRA)</span> </h3> <ul><li> <a name="CHIRP-EXTRA:*ACCESS-LEVELS*"> </a> <article id="SPECIAL CHIRP-EXTRA:*ACCESS-LEVELS*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AACCESS-LEVELS%2A">*ACCESS-LEVELS*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*CACHED-ACCESS*"> </a> <article id="SPECIAL CHIRP-EXTRA:*CACHED-ACCESS*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ACACHED-ACCESS%2A">*CACHED-ACCESS*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*CACHED-CONFIGURATION*"> </a> <article id="SPECIAL CHIRP-EXTRA:*CACHED-CONFIGURATION*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ACACHED-CONFIGURATION%2A">*CACHED-CONFIGURATION*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*CACHED-LANGUAGES*"> </a> <article id="SPECIAL CHIRP-EXTRA:*CACHED-LANGUAGES*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ACACHED-LANGUAGES%2A">*CACHED-LANGUAGES*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*CACHED-SELF*"> </a> <article id="SPECIAL CHIRP-EXTRA:*CACHED-SELF*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ACACHED-SELF%2A">*CACHED-SELF*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*CONNECTION-VALUES*"> </a> <article id="SPECIAL CHIRP-EXTRA:*CONNECTION-VALUES*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ACONNECTION-VALUES%2A">*CONNECTION-VALUES*</a></code></h4> </header> <div class="docstring"><pre>Possible values for the connections field in a relationship object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-ACCESS-SECRET*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-ACCESS-SECRET*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-ACCESS-SECRET%2A">*OAUTH-ACCESS-SECRET*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-ACCESS-TOKEN*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-ACCESS-TOKEN*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-ACCESS-TOKEN%2A">*OAUTH-ACCESS-TOKEN*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-API-KEY*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-API-KEY*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-API-KEY%2A">*OAUTH-API-KEY*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-API-SECRET*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-API-SECRET*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-API-SECRET%2A">*OAUTH-API-SECRET*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-SIGNATURE-METHOD*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-SIGNATURE-METHOD*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-SIGNATURE-METHOD%2A">*OAUTH-SIGNATURE-METHOD*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*OAUTH-VERSION*"> </a> <article id="SPECIAL CHIRP-EXTRA:*OAUTH-VERSION*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2AOAUTH-VERSION%2A">*OAUTH-VERSION*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:*SERVER-PORT*"> </a> <article id="SPECIAL CHIRP-EXTRA:*SERVER-PORT*"> <header class="special"> <span class="type">special</span> <h4 class="name"><code><a href="#SPECIAL%20CHIRP-EXTRA%3A%2ASERVER-PORT%2A">*SERVER-PORT*</a></code></h4> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:ACCESS-LEVEL"> </a> <article id="FUNCTION CHIRP-EXTRA:ACCESS-LEVEL"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AACCESS-LEVEL">ACCESS-LEVEL</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Returns :READ, :READ-WRITE, :READ-WRITE-DIRECTMESSAGES or NIL indicating the current
access level.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:COMPLETE-AUTHENTICATION"> </a> <article id="FUNCTION CHIRP-EXTRA:COMPLETE-AUTHENTICATION"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ACOMPLETE-AUTHENTICATION">COMPLETE-AUTHENTICATION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">VERIFIER &OPTIONAL (TOKEN *OAUTH-ACCESS-TOKEN*)</code><code>)</code> </header> <div class="docstring"><pre>Finishes the authentication procedure by retrieving the access token.
Sets the *OAUTH-TOKEN* and *OAUTH-TOKEN-SECRET* to their respective values.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:COMPUTE-STATUS-LENGTH"> </a> <article id="FUNCTION CHIRP-EXTRA:COMPUTE-STATUS-LENGTH"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ACOMPUTE-STATUS-LENGTH">COMPUTE-STATUS-LENGTH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS-TEXT</code><code>)</code> </header> <div class="docstring"><pre>Computes the final status length by shortening the URLs within the tweet according to twitter's current URL shortening configurations.
If the configuration has not been fetched before, this function call will result in an api call.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:CURSOR-COLLECT"> </a> <article id="FUNCTION CHIRP-EXTRA:CURSOR-COLLECT"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ACURSOR-COLLECT">CURSOR-COLLECT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">PARAMETER URI &KEY PARAMETERS (METHOD :GET)</code><code>)</code> </header> <div class="docstring"><pre>Collects the given parameter into one list by APPEND.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:CURSORED-REQUEST"> </a> <article id="FUNCTION CHIRP-EXTRA:CURSORED-REQUEST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ACURSORED-REQUEST">CURSORED-REQUEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">URI &KEY PARAMETERS (METHOD :GET)</code><code>)</code> </header> <div class="docstring"><pre>Performs a signed-request returning a cursor instance tailored for it.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:DIRECT-MENTION-P"> </a> <article id="FUNCTION CHIRP-EXTRA:DIRECT-MENTION-P"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ADIRECT-MENTION-P">DIRECT-MENTION-P</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Returns T if the status is a direct mention of the currently identified user.
To qualify as a direct mention, the mention has to appear before any other text in the tweet.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:FILE-TO-BASE64-STRING"> </a> <article id="FUNCTION CHIRP-EXTRA:FILE-TO-BASE64-STRING"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AFILE-TO-BASE64-STRING">FILE-TO-BASE64-STRING</a></code></h4> <code class="qualifiers"></code> <code class="arguments">PATHNAME</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:FROM-KEYWORD"> </a> <article id="FUNCTION CHIRP-EXTRA:FROM-KEYWORD"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AFROM-KEYWORD">FROM-KEYWORD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">KEYWORD</code><code>)</code> </header> <div class="docstring"><pre>Turns a keyword into a key.
Replaces - with _ and downcases the keyword as a string.
This is useful to parse the request parameters from the
lisp representation into the api representation.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:GENERATE-NONCE"> </a> <article id="FUNCTION CHIRP-EXTRA:GENERATE-NONCE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AGENERATE-NONCE">GENERATE-NONCE</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Generate a NONCE to use for requests. Currently this simply uses a v4-UUID.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:HMAC"> </a> <article id="FUNCTION CHIRP-EXTRA:HMAC"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AHMAC">HMAC</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING KEYSTRING</code><code>)</code> </header> <div class="docstring"><pre>Returns a base-64 encoded string of the HMAC digest of the given STRING
using the KEYSTRING as HMAC key. The encoding of *external-format* is used
throughout.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:INITIATE-AUTHENTICATION"> </a> <article id="FUNCTION CHIRP-EXTRA:INITIATE-AUTHENTICATION"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AINITIATE-AUTHENTICATION">INITIATE-AUTHENTICATION</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&KEY (METHOD :PIN) (API-KEY *OAUTH-API-KEY*) (API-SECRET *OAUTH-API-SECRET*)</code><code>)</code> </header> <div class="docstring"><pre>Starts the authentication process and returns an URL that the user has to visit.
METHOD can be one of :PIN :SERVER or a string designating a callback URL.
See <a href="NIL">OAUTH/AUTHORIZE,</a> INITIATE-SERVER-AUTHENTICATION and OAUTH/AUTHENTICATE respectively.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:MAP-CURSOR"> </a> <article id="FUNCTION CHIRP-EXTRA:MAP-CURSOR"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AMAP-CURSOR">MAP-CURSOR</a></code></h4> <code class="qualifiers"></code> <code class="arguments">FUNCTION PARAMETER URI &KEY PARAMETERS (METHOD :GET)</code><code>)</code> </header> <div class="docstring"><pre>Applies FUNCTION to each element of the designated parameter while going through the cursor.
Returns the collected return values of the FUNCTION calls.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:MENTION-P"> </a> <article id="FUNCTION CHIRP-EXTRA:MENTION-P"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AMENTION-P">MENTION-P</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Returns T if the status is mentioning the currently identified user.
Simply checks the status entities for a user-mention that matches to the currently identified user.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:PARSE-BOOLEAN"> </a> <article id="FUNCTION CHIRP-EXTRA:PARSE-BOOLEAN"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3APARSE-BOOLEAN">PARSE-BOOLEAN</a></code></h4> <code class="qualifiers"></code> <code class="arguments">VALUE</code><code>)</code> </header> <div class="docstring"><pre>Parses a string boolean. If the string is one of
(T, true, 1), then T is returned, otherwise NIL.
The check is case-insensitive.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:PARSE-MONTH"> </a> <article id="FUNCTION CHIRP-EXTRA:PARSE-MONTH"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3APARSE-MONTH">PARSE-MONTH</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING</code><code>)</code> </header> <div class="docstring"><i>No docstring provided.</i></div> </article> </li><li> <a name="CHIRP-EXTRA:PARSE-TWITTER-TIME"> </a> <article id="FUNCTION CHIRP-EXTRA:PARSE-TWITTER-TIME"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3APARSE-TWITTER-TIME">PARSE-TWITTER-TIME</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING</code><code>)</code> </header> <div class="docstring"><pre>Parse a string returned by the twitter API that is of
the form "Fri Mar 26 15:36:12 +0000 2010" to a local-time
timestamp.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:PIN-REQUEST-TOKEN"> </a> <article id="FUNCTION CHIRP-EXTRA:PIN-REQUEST-TOKEN"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3APIN-REQUEST-TOKEN">PIN-REQUEST-TOKEN</a></code></h4> <code class="qualifiers"></code> <code class="arguments"></code><code>)</code> </header> <div class="docstring"><pre>Query for a PIN based request token.
See <a href="NIL">CALLBACK-REQUEST-TOKEN.</a>
According to spec https://dev.twitter.com/docs/auth/pin-based-authorization</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:PREPARE"> </a> <article id="FUNCTION CHIRP-EXTRA:PREPARE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3APREPARE">PREPARE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">PARAMETERS</code><code>)</code> </header> <div class="docstring"><pre>Filters out empty key-value pairs and turns all values
into strings, ready to be sent out as request parameters.
This function is DESTRUCTIVE.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:REPLACE-ENTITIES"> </a> <article id="FUNCTION CHIRP-EXTRA:REPLACE-ENTITIES"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AREPLACE-ENTITIES">REPLACE-ENTITIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS REPLACEMENT-FUNCTIONS &OPTIONAL (TEXT (TEXT STATUS))</code><code>)</code> </header> <div class="docstring"><pre>Replaces the regions as marked by the entities with the result of the replacement function.
STATUS --- A status object or any object with entities, or a list of entities.
REPLACEMENT-FUNCTIONS --- A plist of entity-types as keys and functions with one argument as the value. Keys should
be one of :USER-MENTIONS :URLS :SYMBOLS :HASHTAGS :MEDIA. Functions should take one argument,
the entity to replace and return a string value to replace it with.
TEXT --- The text to replace in. The sequence is not modified.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:REPLACE-ENTITY"> </a> <article id="FUNCTION CHIRP-EXTRA:REPLACE-ENTITY"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AREPLACE-ENTITY">REPLACE-ENTITY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS ENTITY-TYPE REPLACEMENT-FUNCTION &OPTIONAL (TEXT (TEXT STATUS))</code><code>)</code> </header> <div class="docstring"><pre>Replaces the regions as marked by the entities with the result of the replacement function.
STATUS --- A status object or any object with entities.
ENTITY-TYPE --- A keyword for the entity to replace. Either :USER-MENTIONS :URLS :SYMBOLS :HASHTAGS :MEDIA
REPLACEMENT-FUNCTION --- A function with one argument; the entity object currently being replaced.
TEXT --- The text to replace in. The sequence is not modified.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:RETWEET-P"> </a> <article id="FUNCTION CHIRP-EXTRA:RETWEET-P"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ARETWEET-P">RETWEET-P</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Returns T if the status is a retweet.
To qualify as a retweet, the tweet has to either contain a RETWEETED-STATUS, or start with "RT".</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:SERIALIZE-OBJECT"> </a> <article id="FUNCTION CHIRP-EXTRA:SERIALIZE-OBJECT"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ASERIALIZE-OBJECT">SERIALIZE-OBJECT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><pre>Turns all object slots into an ALIST.
Requires CLOSER-MOP to be installed.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:SIGNED-DATA-REQUEST"> </a> <article id="FUNCTION CHIRP-EXTRA:SIGNED-DATA-REQUEST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ASIGNED-DATA-REQUEST">SIGNED-DATA-REQUEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">REQUEST-URL &KEY DATA-PARAMETERS PARAMETERS OAUTH-PARAMETERS
ADDITIONAL-HEADERS (METHOD :POST) DRAKMA-PARAMS</code><code>)</code> </header> <div class="docstring"><pre>Issue a signed data request against the API.
See <a href="NIL">SIGNED-REQUEST.</a>
According to spec https://dev.twitter.com/docs/uploading-media</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:SIGNED-REQUEST"> </a> <article id="FUNCTION CHIRP-EXTRA:SIGNED-REQUEST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ASIGNED-REQUEST">SIGNED-REQUEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">REQUEST-URL &KEY PARAMETERS OAUTH-PARAMETERS ADDITIONAL-HEADERS (METHOD :POST)
DRAKMA-PARAMS</code><code>)</code> </header> <div class="docstring"><pre>Issue a signed request against the API.
This requires the *oauth-api-key*, *oauth-signature-method*,
*oauth-version* and at least *oauth-api-secret* to be set.
See <a href="NIL">CREATE-SIGNATURE.</a>
For return values see DRAKMA:HTTP-REQUEST
According to spec https://dev.twitter.com/docs/auth/authorizing-request</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:SIGNED-STREAM-REQUEST"> </a> <article id="FUNCTION CHIRP-EXTRA:SIGNED-STREAM-REQUEST"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ASIGNED-STREAM-REQUEST">SIGNED-STREAM-REQUEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">REQUEST-URL &KEY PARAMETERS OAUTH-PARAMETERS ADDITIONAL-HEADERS (METHOD :POST)
DRAKMA-PARAMS</code><code>)</code> </header> <div class="docstring"><pre>Issue a signed data request against the API.
See <a href="NIL">SIGNED-REQUEST.</a> Returns values according to DRAKMA:HTTP-REQUEST with :WANT-STREAM T</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:TEXT-WITH-EXPANDED-URLS"> </a> <article id="FUNCTION CHIRP-EXTRA:TEXT-WITH-EXPANDED-URLS"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ATEXT-WITH-EXPANDED-URLS">TEXT-WITH-EXPANDED-URLS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS &OPTIONAL (TEXT (TEXT STATUS))</code><code>)</code> </header> <div class="docstring"><pre>Replaces the shortened links with the resolved entity urls if possible.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:TEXT-WITH-MARKUP"> </a> <article id="FUNCTION CHIRP-EXTRA:TEXT-WITH-MARKUP"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ATEXT-WITH-MARKUP">TEXT-WITH-MARKUP</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS &KEY APPEND-MEDIA (URL-CLASS "status-url")
(MENTION-CLASS "status-mention") (HASHTAG-CLASS "status-hashtag")
(MEDIA-CLASS "status-media") (MEDIA-IMAGE-CLASS "status-media-image")
(TEXT (TEXT STATUS))</code><code>)</code> </header> <div class="docstring"><pre>Transforms the text into a HTML-ready form.
This includes the following changes related to entities:
URLS -> <a href="URL" title="EXPANDED-URL">DISPLAY-URL</a>
USER-MENTIONS -> <a href="http://twitter.com/SCREEN-NAME" title="NAME">@SCREEN-NAME</a>
HASHTAGS -> <a href="http://twitter.com/search?q=%23HASHTAG">#HASHTAG</a>
MEDIA -> <a href="URL" title="EXPANDED-URL">DISPLAY-URL</a>
The tweet status text is also correctly escaped with entities for <, >, &.
If APPEND-MEDIA is non-NIL, an <img> tag with the related SRC and ALT attributes is appended to the text if a media entity exists.
APPEND-MEDIA can be one of :LARGE :MEDIUM :SMALL :THUMB, which sets the proper width and height attributes and loads the respective image.
The size defaults to :THUMB.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:TO-KEYWORD"> </a> <article id="FUNCTION CHIRP-EXTRA:TO-KEYWORD"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3ATO-KEYWORD">TO-KEYWORD</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING</code><code>)</code> </header> <div class="docstring"><pre>Turns a key into a keyword.
Replaces _ with - and uppercases the string, then interns it
into the keyword package. This is useful to parse the request
responses into an alist.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:URL-ENCODE"> </a> <article id="FUNCTION CHIRP-EXTRA:URL-ENCODE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AURL-ENCODE">URL-ENCODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING &OPTIONAL (EXTERNAL-FORMAT *EXTERNAL-FORMAT*)</code><code>)</code> </header> <div class="docstring"><pre>Returns a URL-encoded version of the string STRING using the external format EXTERNAL-FORMAT.
According to spec https://dev.twitter.com/docs/auth/percent-encoding-parameters</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:VALID-LANGUAGE-P"> </a> <article id="FUNCTION CHIRP-EXTRA:VALID-LANGUAGE-P"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AVALID-LANGUAGE-P">VALID-LANGUAGE-P</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LANGUAGE &KEY REFRESH-CACHE</code><code>)</code> </header> <div class="docstring"><pre>Returns T if the given language code is a language covered by twitter.
See <a href="NIL">HELP/LANGUAGES.</a></pre></div> </article> </li><li> <a name="CHIRP-EXTRA:XML-DECODE"> </a> <article id="FUNCTION CHIRP-EXTRA:XML-DECODE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AXML-DECODE">XML-DECODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING</code><code>)</code> </header> <div class="docstring"><pre>Transforms &lt; &gt; &amp; into their proper characters.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:XML-ENCODE"> </a> <article id="FUNCTION CHIRP-EXTRA:XML-ENCODE"> <header class="function"> <span class="type">function</span> <code>(</code><h4 class="name"><code><a href="#FUNCTION%20CHIRP-EXTRA%3AXML-ENCODE">XML-ENCODE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STRING</code><code>)</code> </header> <div class="docstring"><pre>Transforms & < > into their proper entities.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:BLOCK-USER"> </a> <article id="GENERIC CHIRP-EXTRA:BLOCK-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ABLOCK-USER">BLOCK-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER</code><code>)</code> </header> <div class="docstring"><pre>Blocks the given user as per BLOCKS/CREATE. Returns a new user object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:CURSOR-NEXT"> </a> <article id="GENERIC CHIRP-EXTRA:CURSOR-NEXT"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ACURSOR-NEXT">CURSOR-NEXT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CURSOR</code><code>)</code> </header> <div class="docstring"><pre>Moves the cursor to the next iteration if possible and saves the data in the cursor object.
If no additional data is available, NIL is returned instead.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:CURSOR-PREVIOUS"> </a> <article id="GENERIC CHIRP-EXTRA:CURSOR-PREVIOUS"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ACURSOR-PREVIOUS">CURSOR-PREVIOUS</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CURSOR</code><code>)</code> </header> <div class="docstring"><pre>Moves the cursor to the previous iteration if possible and saves the data in the cursor object.
If no additional data is available, NIL is returned instead.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:CURSOR-REQUEST"> </a> <article id="GENERIC CHIRP-EXTRA:CURSOR-REQUEST"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ACURSOR-REQUEST">CURSOR-REQUEST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">CURSOR</code><code>)</code> </header> <div class="docstring"><pre>Perform the currently stored cursor request and save the data in the cursor object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:DELETE-OBJECT"> </a> <article id="GENERIC CHIRP-EXTRA:DELETE-OBJECT"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ADELETE-OBJECT">DELETE-OBJECT</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><pre>Deletes the given object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:FAVORITE"> </a> <article id="GENERIC CHIRP-EXTRA:FAVORITE"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AFAVORITE">FAVORITE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Favorites the given status as per FAVORITES/CREATE. Returns a new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:FETCH-USER"> </a> <article id="GENERIC CHIRP-EXTRA:FETCH-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AFETCH-USER">FETCH-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">OBJECT</code><code>)</code> </header> <div class="docstring"><pre>Fetches the user object associated with the given object.
This always returns a fresh object and always results in a server call.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:FOLLOW-USER"> </a> <article id="GENERIC CHIRP-EXTRA:FOLLOW-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AFOLLOW-USER">FOLLOW-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER</code><code>)</code> </header> <div class="docstring"><pre>Follows the given user as per FRIENDSHIPS/CREATE. Returns a new user object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:LIST-USER"> </a> <article id="GENERIC CHIRP-EXTRA:LIST-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ALIST-USER">LIST-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LIST USER</code><code>)</code> </header> <div class="docstring"><pre>Adds the given user to the given list as per LISTS/MEMBERS/CREATE. Returns the given USER identifying object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:MAP-TIMELINE"> </a> <article id="GENERIC CHIRP-EXTRA:MAP-TIMELINE"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AMAP-TIMELINE">MAP-TIMELINE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">TIMELINE HANDLER-FUNCTION &REST ARGS &KEY COOLDOWN COUNT TRIM-USER
INCLUDE-ENTITIES CONTRIBUTOR-DETAILS INCLUDE-RTS EXCLUDE-REPLIES
INCLUDE-USER-ENTITIES &ALLOW-OTHER-KEYS</code><code>)</code> </header> <div class="docstring"><pre>Continuously apply HANDLER-FUNCTION to each STATUS appearing in the given TIMELINE.
Before fetching new tweets, a COOLDOWN amount of seconds are slept to avoid spamming.
Each time after a fetch, HANDLER-FUNCTION is applied to each status returned by the fetch.
Internally, the :SINCE-ID argument is supplied to each subsequent request to assure that only
new statuses are fetched on every iteration.
Depending on which timeline is requested, additional keyword arguments may be supplied.
See <a href="http://l1sp.org/cl/the">the</a> individual STATUSES/* functions for further reference.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:MENTION-USER"> </a> <article id="GENERIC CHIRP-EXTRA:MENTION-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AMENTION-USER">MENTION-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER TEXT &KEY FILE REPLY-TO LATITUDE LONGITUDE PLACE-ID POSSIBLY-SENSITIVE</code><code>)</code> </header> <div class="docstring"><pre>Creates a new mentioning status (@user ..) as per TWEET!. Returns the new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:MESSAGE-USER"> </a> <article id="GENERIC CHIRP-EXTRA:MESSAGE-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AMESSAGE-USER">MESSAGE-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER TEXT</code><code>)</code> </header> <div class="docstring"><pre>Sends a direct message to the given user as per DIRECT-MESSAGES/NEW. Returns the new DIRECT-MESSAGE Object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:REPLY"> </a> <article id="GENERIC CHIRP-EXTRA:REPLY"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AREPLY">REPLY</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS TEXT &KEY FILE LATITUDE LONGITUDE PLACE-ID POSSIBLY-SENSITIVE</code><code>)</code> </header> <div class="docstring"><pre>Replies to the given status, mentioning only the status' owner (@user ..) as per TWEET!. Returns the new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:REPLY-ALL"> </a> <article id="GENERIC CHIRP-EXTRA:REPLY-ALL"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AREPLY-ALL">REPLY-ALL</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS TEXT &KEY FILE LATITUDE LONGITUDE PLACE-ID POSSIBLY-SENSITIVE</code><code>)</code> </header> <div class="docstring"><pre>Replies to all mentioned users in the tweet as per TWEET!. Returns the new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:REPORT-USER"> </a> <article id="GENERIC CHIRP-EXTRA:REPORT-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AREPORT-USER">REPORT-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER</code><code>)</code> </header> <div class="docstring"><pre>Reports the given user for spam and blocks it as per USERS/REPORT-SPAM. Returns a new user object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:RETWEET"> </a> <article id="GENERIC CHIRP-EXTRA:RETWEET"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ARETWEET">RETWEET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Retweets the given status as per STATUSES/RETWEET. Returns the new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:START-STREAM"> </a> <article id="GENERIC CHIRP-EXTRA:START-STREAM"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ASTART-STREAM">START-STREAM</a></code></h4> <code class="qualifiers"></code> <code class="arguments">FILTER HANDLER-FUNCTION &REST ARGS &KEY STALL-WARNINGS FILTER-LEVEL LANGUAGE
COUNT WITH REPLIES FOLLOW TRACK LOCATIONS &ALLOW-OTHER-KEYS</code><code>)</code> </header> <div class="docstring"><pre>Starts the streaming process as per the STREAM/ functions. Depending on the filter, a different stream is started.
FILTER can be of type USER, LOCATION, GEOMETRY, STRING, NULL or :USER, :SITE, :SAMPLE, :FILTER or :FIREHOSE.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:SUBSCRIBE-TO-LIST"> </a> <article id="GENERIC CHIRP-EXTRA:SUBSCRIBE-TO-LIST"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ASUBSCRIBE-TO-LIST">SUBSCRIBE-TO-LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LIST</code><code>)</code> </header> <div class="docstring"><pre>Subscribes to the given list as per LISTS/SUBSCRIBERS/CREATE. Returns a new USER-LIST object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:TWEET"> </a> <article id="GENERIC CHIRP-EXTRA:TWEET"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3ATWEET">TWEET</a></code></h4> <code class="qualifiers"></code> <code class="arguments">TEXT &KEY FILE REPLY-TO LATITUDE LONGITUDE PLACE-ID POSSIBLY-SENSITIVE</code><code>)</code> </header> <div class="docstring"><pre>Creates a new status as per STATUSES/UPDATE or STATUSES/UPDATE-WITH-MEDIA if FILE is given. Returns the new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:UNBLOCK-USER"> </a> <article id="GENERIC CHIRP-EXTRA:UNBLOCK-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AUNBLOCK-USER">UNBLOCK-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER</code><code>)</code> </header> <div class="docstring"><pre>Unblocks the given user as per BLOCKS/DESTROY. Returns a new user object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:UNFAVORITE"> </a> <article id="GENERIC CHIRP-EXTRA:UNFAVORITE"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AUNFAVORITE">UNFAVORITE</a></code></h4> <code class="qualifiers"></code> <code class="arguments">STATUS</code><code>)</code> </header> <div class="docstring"><pre>Unfavorites the given status as per FAVORITES/DESTROY. Returns a new STATUS object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:UNFOLLOW-USER"> </a> <article id="GENERIC CHIRP-EXTRA:UNFOLLOW-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AUNFOLLOW-USER">UNFOLLOW-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">USER</code><code>)</code> </header> <div class="docstring"><pre>Unfollows the given user as per FRIENDSHIPS/DESTROY. Returns a new user object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:UNLIST-USER"> </a> <article id="GENERIC CHIRP-EXTRA:UNLIST-USER"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AUNLIST-USER">UNLIST-USER</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LIST USER</code><code>)</code> </header> <div class="docstring"><pre>Removes the given user from the given list as per LISTS/MEMBERS/DESTROY-ALL. Returns the given USER identifying object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:UNSUBSCRIBE-FROM-LIST"> </a> <article id="GENERIC CHIRP-EXTRA:UNSUBSCRIBE-FROM-LIST"> <header class="generic"> <span class="type">generic</span> <code>(</code><h4 class="name"><code><a href="#GENERIC%20CHIRP-EXTRA%3AUNSUBSCRIBE-FROM-LIST">UNSUBSCRIBE-FROM-LIST</a></code></h4> <code class="qualifiers"></code> <code class="arguments">LIST</code><code>)</code> </header> <div class="docstring"><pre>Unsubscribes from the given list as per LISTS/SUBSCRIBERS/DESTROY. REturns a new USER-LIST object.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:DO-CURSOR"> </a> <article id="MACRO CHIRP-EXTRA:DO-CURSOR"> <header class="macro"> <span class="type">macro</span> <code>(</code><h4 class="name"><code><a href="#MACRO%20CHIRP-EXTRA%3ADO-CURSOR">DO-CURSOR</a></code></h4> <code class="qualifiers"></code> <code class="arguments">(DATA-VAR URI &KEY PARAMETERS (METHOD) (CURSOR-VAR)) &BODY BODY</code><code>)</code> </header> <div class="docstring"><pre>Iterates over all data sets of a cursor, binding the request data to DATA-VAR on each iteration.
Returns the cursor at its end position. </pre></div> </article> </li><li> <a name="CHIRP-EXTRA:PREPARE*"> </a> <article id="MACRO CHIRP-EXTRA:PREPARE*"> <header class="macro"> <span class="type">macro</span> <code>(</code><h4 class="name"><code><a href="#MACRO%20CHIRP-EXTRA%3APREPARE%2A">PREPARE*</a></code></h4> <code class="qualifiers"></code> <code class="arguments">&REST PARAMETER-NAMES</code><code>)</code> </header> <div class="docstring"><pre>Creates a PREPARE statement out of the provided variables.</pre></div> </article> </li><li> <a name="CHIRP-EXTRA:WITH-REPLACED-ENTITIES"> </a> <article id="MACRO CHIRP-EXTRA:WITH-REPLACED-ENTITIES"> <header class="macro"> <span class="type">macro</span> <code>(</code><h4 class="name"><code><a href="#MACRO%20CHIRP-EXTRA%3AWITH-REPLACED-ENTITIES">WITH-REPLACED-ENTITIES</a></code></h4> <code class="qualifiers"></code> <code class="arguments">(STATUS &OPTIONAL (ENTITYVAR) (TEXT)) &BODY REPLACEMENTS</code><code>)</code> </header> <div class="docstring"><pre>Shorthand macro for replacing multiple entities.
STATUS --- A status object or any object with entities, or a list of entities.
ENTITYVAR --- The variable to use in the replacement functions.
TEXT --- The text to pass to REPLACE-ENTITIES
REPLACEMENTS ::= (TYPE FORM*)*
TYPE --- An entity type. Should be one of :USER-MENTIONS :URLS :SYMBOLS :HASHTAGS :MEDIA.</pre></div> </article> </li></ul> </li></ul> </article> </main> </body> </html>