通过亚伯拉罕OAuth API转发我的应用程序受Twitter限制

时间:2016-08-30 18:31:50

标签: php api twitter oauth twitter-oauth

我正在使用此代码:

$tweet = new TwitterOAuth($consumerKey,$consumerSecret,$oauth_token,$oauth_token_secret); 
$tweet->setProxy(['CURLOPT_PROXY' => $rand_ip,
'CURLOPT_PROXYUSERPWD' => $rand_ip_auth,
'CURLOPT_PROXYPORT' => $rand_ip_port,
]); 
$tweet->setTimeouts(25, 120);
$response = $tweet->post("statuses/retweet/$tweet_id");
sleep(12); //for 12 seconds sleep so that twitter rate limit not hit. 

即便我也为每个请求使用随机代理,但我的Twitter应用程序仍受限制。

请帮助我,我可以转发而不会达到速率限制。

0 个答案:

没有答案