aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/twitter/twitter_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/twitter/twitter_lib.c')
-rw-r--r--protocols/twitter/twitter_lib.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c
index a8cc9d04..beb65107 100644
--- a/protocols/twitter/twitter_lib.c
+++ b/protocols/twitter/twitter_lib.c
@@ -1241,10 +1241,12 @@ void twitter_report_spam(struct im_connection *ic, char *screen_name)
*/
void twitter_favourite_tweet(struct im_connection *ic, guint64 id)
{
- char *url;
- url = g_strdup_printf("%s%llu%s", TWITTER_FAVORITE_CREATE_URL,
- (unsigned long long) id, ".json");
- twitter_http_f(ic, url, twitter_http_post, ic, 1, NULL, 0,
- TWITTER_HTTP_USER_ACK);
- g_free(url);
+ char *args[2] = {
+ "id",
+ NULL,
+ };
+ args[1] = g_strdup_printf("%llu", (unsigned long long) id);
+ twitter_http_f(ic, TWITTER_FAVORITE_CREATE_URL, twitter_http_post,
+ ic, 1, args, 2, TWITTER_HTTP_USER_ACK);
+ g_free(args[1]);
}