public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Add TwitterClient.user_show() declaration

The user_show() method is used to get the full description of a Twitter
user; TwitterUser is missing some of the fields, but I need to see which
fields are returned first.
Emmanuele Bassi (author)
Sat Apr 12 06:08:09 -0700 2008
commit  9b660c8e8a386217067a30f396d3c064a753c42d
tree    9dd2a0dfd503b013f11a3a519081f4b249097699
parent  09fb507adc3d5d561b75a1df0535dddb99d30221
...
258
259
260
 
261
262
263
...
282
283
284
 
285
286
287
...
258
259
260
261
262
263
264
...
283
284
285
286
287
288
289
0
@@ -258,6 +258,7 @@ typedef enum {
0
   FRIENDS,
0
   FOLLOWERS,
0
   FEATURED,
0
+ USER_SHOW,
0
   VERIFY_CREDENTIALS,
0
   END_SESSION,
0
   FRIEND_CREATE,
0
@@ -282,6 +283,7 @@ static const gchar *action_names[N_CLIENT_ACTIONS] = {
0
   "statuses/friends",
0
   "statuses/followers",
0
   "statuses/featured",
0
+ "users/show",
0
   "account/verify_credentials",
0
   "account/end_session",
0
   "friendship/create",
...
122
123
124
 
 
125
126
127
...
122
123
124
125
126
127
128
129
0
@@ -122,6 +122,8 @@ void twitter_client_get_user (TwitterClient *client,
0
                                                     gchar **password);
0
 void twitter_client_verify_user (TwitterClient *client);
0
 void twitter_client_end_session (TwitterClient *client);
0
+void twitter_client_show_user (TwitterClient *client,
0
+ const gchar *user);
0
 
0
 void twitter_client_get_public_timeline (TwitterClient *client,
0
                                                     guint since_id);

Comments

    No one has commented yet.