我正在使用此代码:
$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应用程序仍受限制。
请帮助我,我可以转发而不会达到速率限制。