Get header out

This commit is contained in:
Kai Hendry
2013-02-09 16:49:17 +08:00
parent 4a13e5abc3
commit 3012232680
3 changed files with 17 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ then
test "$2" && since='&max_id='$(tail -n1 $1.txt | cut -d'|' -f1) # use max_id to get older tweets
fi
while urlargs="screen_name=${1}&count=200&page=${page}${since}&include_rts=1&trim_user=0&include_entities=1"; echo $urlargs; ./oauth.php $urlargs | json -d '|' -a id created_at text > $temp2; test $(wc -l < $temp2) -gt 0;
while urlargs="screen_name=${1}&count=200&page=${page}${since}&include_rts=1&trim_user=0&include_entities=1"; echo $urlargs; $(dirname $0)/oauth.php $urlargs | json -d '|' -a id created_at text > $temp2; test $(wc -l < $temp2) -gt 0;
do
#cat temp2

7
jquery.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -45,18 +45,22 @@ $oauth['oauth_signature'] = $oauth_signature;
// Make Requests
$header = array(buildAuthorizationHeader($oauth), 'Expect:');
$options = array( CURLOPT_HTTPHEADER => $header,
//CURLOPT_POSTFIELDS => $postfields,
CURLOPT_HEADER => false,
CURLOPT_URL => $url . '?'. $urlargs,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false);
$feed = curl_init();
$options = array( CURLOPT_HTTPHEADER => $header,
CURLOPT_URL => $url . '?'. $urlargs,
CURLOPT_HEADER => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false);
curl_setopt_array($feed, $options);
$json = curl_exec($feed);
$content = curl_exec($feed);
list($header, $json) = explode("\r\n\r\n", $content, 2);
curl_close($feed);
file_put_contents('php://stderr', $header . "\n\n");
// No results returned, Twitter API issue
if (strlen($json) == 2) { exit(1); };