Fiw TwitterBridge after SSL enforcement (https://dev.twitter.com/discussions/24239)
This commit is contained in:
parent
edee39790e
commit
711f938892
@ -310,7 +310,7 @@ class TwitterOAuthClient extends OAuthClient
|
||||
|
||||
function statusesRetweet($id)
|
||||
{
|
||||
$url = "http://api.twitter.com/1.1/statuses/retweet/$id.json";
|
||||
$url = "https://api.twitter.com/1.1/statuses/retweet/$id.json";
|
||||
$response = $this->oAuthPost($url);
|
||||
$status = json_decode($response);
|
||||
return $status;
|
||||
@ -326,7 +326,7 @@ class TwitterOAuthClient extends OAuthClient
|
||||
|
||||
function favoritesCreate($id)
|
||||
{
|
||||
$url = "http://api.twitter.com/1.1/favorites/create.json";
|
||||
$url = "https://api.twitter.com/1.1/favorites/create.json";
|
||||
$params=array();
|
||||
$params['id'] = $id;
|
||||
$response = $this->oAuthPost($url, $params);
|
||||
@ -344,7 +344,7 @@ class TwitterOAuthClient extends OAuthClient
|
||||
|
||||
function favoritesDestroy($id)
|
||||
{
|
||||
$url = "http://api.twitter.com/1.1/favorites/destroy.json";
|
||||
$url = "https://api.twitter.com/1.1/favorites/destroy.json";
|
||||
$params=array();
|
||||
$params['id'] = $id;
|
||||
$response = $this->oAuthPost($url,$params);
|
||||
@ -362,7 +362,7 @@ class TwitterOAuthClient extends OAuthClient
|
||||
|
||||
function statusesDestroy($id)
|
||||
{
|
||||
$url = "http://api.twitter.com/1.1/statuses/destroy/$id.json";
|
||||
$url = "https://api.twitter.com/1.1/statuses/destroy/$id.json";
|
||||
$response = $this->oAuthPost($url);
|
||||
$status = json_decode($response);
|
||||
return $status;
|
||||
|
Loading…
Reference in New Issue
Block a user