创建我的 Twitter 应用程序后,显示以下警告:
OAuth 设置
您的应用程序的 OAuth 设置。保守“消费者秘密”的秘密。在您的应用程序中,此密钥不应该是人类可读的。
如何保守我的“消费者秘密”?
Twitter_test.php(来源:Jimbo)
// Set access tokens here
$settings = array(
'oauth_access_token' => "My Oauth Access Token",
'oauth_access_token_secret' => "My Oauth Access Token Secret",
'consumer_key' => "My Consumer Key",
'consumer_secret' => "My Consumer Secret"
);
$url = 'https://api.twitter.com/1.1/followers/ids.json';
$getfield = '?username=somename';
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
echo $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
?>
TwitterAPIExchange(来源:twitter-api-php)