-
verifyCredentials()tests if supplied user credentials are valid with minimal overhead.Example 840. Verifying credentials
<?php
$twitter = new Zend_Service_Twitter(array(
'username' => 'johndoe',
'accessToken' => $token
));
$response = $twitter->account->verifyCredentials();
-
endSession()signs users out of client-facing applications.Example 841. Sessions ending
<?php
$twitter = new Zend_Service_Twitter(array(
'username' => 'johndoe',
'accessToken' => $token
));
$response = $twitter->account->endSession();
-
rateLimitStatus()returns the remaining number of API requests available to the authenticating user before the API limit is reached for the current hour.Example 842. Rating limit status
<?php
$twitter = new Zend_Service_Twitter(array(
'username' => 'johndoe',
'accessToken' => $token
));
$response = $twitter->account->rateLimitStatus();




