Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_http.c

    r508c340 r0519b0a  
    3535#include "misc.h"
    3636#include "base64.h"
    37 #include "oauth.h"
    3837#include <ctype.h>
    3938#include <errno.h>
     
    4645 * This is actually pretty generic function... Perhaps it should move to the lib/http_client.c
    4746 */
    48 void *twitter_http(char *url_string, http_input_function func, gpointer data, int is_post, char* user, char* pass, char* oauth_token, char** arguments, int arguments_len)
     47void *twitter_http(char *url_string, http_input_function func, gpointer data, int is_post, char* user, char* pass, char** arguments, int arguments_len)
    4948{
    5049        url_t *url = g_new0( url_t, 1 );
     
    111110
    112111        // If a pass and user are given we append them to the request.
    113         if (oauth_token)
    114         {
    115                 char *full_header;
    116                
    117                 full_header = oauth_http_header(oauth_token,
    118                                                 is_post ? "POST" : "GET",
    119                                                 url_string, url_arguments);
    120                
    121                 tmp = g_strdup_printf("%sAuthorization: %s\r\n", request, full_header);
    122                 g_free(request);
    123                 g_free(full_header);
    124                 request = tmp;
    125         }
    126         else if (userpass_base64)
     112        if (userpass_base64)
    127113        {
    128114                tmp = g_strdup_printf("%sAuthorization: Basic %s\r\n", request, userpass_base64);
Note: See TracChangeset for help on using the changeset viewer.