Skip to content

Commit e1412a8

Browse files
committed
Updated Oauth.php
Removed the content-length header, as users were experience problems when it was manually set when using a proxy service. Also removed some pointless concatenations.
1 parent 1735bee commit e1412a8

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Oauth.php

+5-7
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ function get_bearer_token(){
3232
"POST /oauth2/token HTTP/1.1",
3333
"Host: api.twitter.com",
3434
"User-Agent: jonhurlock Twitter Application-only OAuth App v.1",
35-
"Authorization: Basic ".$base64_encoded_bearer_token."",
36-
"Content-Type: application/x-www-form-urlencoded;charset=UTF-8",
37-
"Content-Length: 29"
35+
"Authorization: Basic ".$base64_encoded_bearer_token,
36+
"Content-Type: application/x-www-form-urlencoded;charset=UTF-8"
3837
);
3938

4039
$ch = curl_init(); // setup a curl
@@ -78,10 +77,9 @@ function invalidate_bearer_token($bearer_token){
7877
"POST /oauth2/invalidate_token HTTP/1.1",
7978
"Host: api.twitter.com",
8079
"User-Agent: jonhurlock Twitter Application-only OAuth App v.1",
81-
"Authorization: Basic ".$base64_encoded_consumer_token."",
80+
"Authorization: Basic ".$base64_encoded_consumer_token,
8281
"Accept: */*",
83-
"Content-Type: application/x-www-form-urlencoded",
84-
"Content-Length: ".(strlen($bearer_token)+13).""
82+
"Content-Type: application/x-www-form-urlencoded"
8583
);
8684

8785
$ch = curl_init(); // setup a curl
@@ -113,7 +111,7 @@ function search_for_a_term($bearer_token, $query, $result_type='mixed', $count='
113111
"GET /1.1/search/tweets.json".$formed_url." HTTP/1.1",
114112
"Host: api.twitter.com",
115113
"User-Agent: jonhurlock Twitter Application-only OAuth App v.1",
116-
"Authorization: Bearer ".$bearer_token."",
114+
"Authorization: Bearer ".$bearer_token
117115
);
118116
$ch = curl_init(); // setup a curl
119117
curl_setopt($ch, CURLOPT_URL,$url.$formed_url); // set url to send to

0 commit comments

Comments
 (0)