- Timestamp:
- 2015-06-17T23:58:02Z (9 years ago)
- Children:
- 15c3a6b
- Parents:
- 114154c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_lib.c
r114154c red83279 1582 1582 { 1583 1583 struct im_connection *ic = req->data; 1584 json_value *parsed, *id; 1584 JSON_Value *parsed; 1585 uint64_t id; 1585 1586 const char *name; 1586 1587 … … 1594 1595 } 1595 1596 1596 /* for the parson branch:1597 1597 name = json_object_dotget_string(json_object(parsed), "user.screen_name"); 1598 1598 id = json_object_get_integer(json_object(parsed), "id"); 1599 */ 1600 1601 name = json_o_str(json_o_get(parsed, "user"), "screen_name"); 1602 id = json_o_get(parsed, "id"); 1603 1604 if (name && id && id->type == json_integer) { 1605 twitter_log(ic, "https://twitter.com/%s/status/%" G_GUINT64_FORMAT, name, id->u.integer); 1599 1600 if (name && id) { 1601 twitter_log(ic, "https://twitter.com/%s/status/%" G_GUINT64_FORMAT, name, id); 1606 1602 } else { 1607 1603 twitter_log(ic, "Error: could not fetch tweet url.");
Note: See TracChangeset
for help on using the changeset viewer.