使用TwitterApiExchange删除Twitter帖子

时间:2016-02-19 12:51:08

标签: api twitter

我正在使用TwitterApiExchange删除Twitter中的帖子但没有成功。 这就是我正在做的事情:

# Redirect [www.]domain.fr and [www.]domain.fr/fr to www.domain.com/fr/france
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.fr$ [NC]
RewriteRule ^(|fr)$ http://www.domain.com/fr/france [R=301,L]

# Redirect domain.fr/fr/* to domain.com/fr/*
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.fr$ [NC]
RewriteRule ^fr/(.*)$ http://www.domain.com/fr/$1 [R=301,L]

也许有些权限问题?我没有得到任何答案,所以我看不出有什么问题。 任何帮助将不胜感激。

require_once('twitter-api-php-master/TwitterAPIExchange.php');
$settings = array(
   'oauth_access_token' => "xxxx",
   'oauth_access_token_secret' => "xxxx",
   'consumer_key' => "xxxx",
   'consumer_secret' => "xxxx"
);

// Put the correct ID in the URL
$url = 'https://api.twitter.com/1.1/statuses/destroy/xxxx.json';
$requestMethod = 'POST';
$postfields = array('id' => 'xxxx');
$twitter = new TwitterAPIExchange($settings);
$json =  $twitter->buildOauth($url, $requestMethod)->setPostfields($postfields)->performRequest();

echo $json;

$result = json_decode($json);

0 个答案:

没有答案