Skip to content

Commit

Permalink
Merge pull request #32 from eddelbuettel/master
Browse files Browse the repository at this point in the history
change remaining http:// to https://
  • Loading branch information
gregkh committed Jan 15, 2014
2 parents 95fb051 + 6809de3 commit 0620029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bti.c
Expand Up @@ -258,9 +258,9 @@ static void bti_curl_buffer_free(struct bti_curl_buffer *buffer)
free(buffer);
}

const char twitter_host[] = "http://api.twitter.com/1.1/statuses";
const char twitter_host[] = "https://api.twitter.com/1.1/statuses";
const char twitter_host_stream[] = "https://stream.twitter.com/1.1/statuses"; /*this is not reset, and doesnt work */
const char twitter_host_simple[] = "http://api.twitter.com/1.1";
const char twitter_host_simple[] = "https://api.twitter.com/1.1";
const char twitter_name[] = "twitter";

static const char twitter_request_token_uri[] = "https://twitter.com/oauth/request_token";
Expand Down

0 comments on commit 0620029

Please sign in to comment.