public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Add more information on the Twitter API

I'd like to be able to read the RESTful API without using my web
browser, thank you very much.
Emmanuele Bassi (author)
Fri Apr 11 02:44:53 -0700 2008
commit  05af0f6f5ce18da91853ed2524d7bd2aa32ea7c5
tree    5ba1c8890c7399c0a63db274daff38f5e1d64426
parent  35c6bd044d19f2a15a8bc3d5cd0879d7d5c65f35
...
14
15
16
 
 
 
17
18
19
...
21
22
23
 
 
 
 
24
25
26
...
42
43
44
 
 
 
 
45
46
47
...
53
54
55
 
56
57
58
...
14
15
16
17
18
19
20
21
22
...
24
25
26
27
28
29
30
31
32
33
...
49
50
51
52
53
54
55
56
57
58
...
64
65
66
67
68
69
70
0
@@ -14,6 +14,9 @@
0
 /* @param (optional): since=%s, http date (If-Modified-Since) */
0
 #define TWITTER_API_FRIENDS_TIMELINE \
0
         "http://twitter.com/statuses/friends_timeline.json"
0
+
0
+/* @param (required): id=%s, user id */
0
+/* @param (optional): since=%s, http date (If-Modified-Since) */
0
 #define TWITTER_API_FRIENDS_TIMELINE_ID \
0
         "http://twitter.com/statuses/friends_timeline/%s.json"
0
 
0
@@ -21,6 +24,10 @@
0
 /* @param (optional): count=%u, number of items (< 20) */
0
 #define TWITTER_API_USER_TIMELINE \
0
         "http://twitter.com/statuses/user_timeline.json"
0
+
0
+/* @param (required): id=%s, user id */
0
+/* @param (optional): since=%s, http date (If-Modified-Since) */
0
+/* @param (optional): count=%u, number of items (< 20) */
0
 #define TWITTER_API_USER_TIMELINE_ID \
0
         "http://twitter.com/statuses/user_timeline/%s.json"
0
 
0
@@ -42,6 +49,10 @@
0
 /* @param (optional): page=%u, page number */
0
 #define TWITTER_API_FRIENDS \
0
         "http://twitter.com/statuses/friends.json"
0
+
0
+/* @param (required): id=%s, user id */
0
+/* @param (optional): lite=true, no status */
0
+/* @param (optional): page=%u, page number */
0
 #define TWITTER_API_FRIENDS_ID \
0
         "http://twitter.com/statuses/friends/%s.json"
0
 
0
@@ -53,6 +64,7 @@
0
 #define TWITTER_API_FEATURED \
0
         "http://twitter.com/statuses/featured.json"
0
 
0
+/* @param (required): id=user id */
0
 #define TWITTER_API_USER_SHOW \
0
         "http://twitter.com/users/show/%s.json"
0
 

Comments

    No one has commented yet.