%PDF- %PDF-
Direktori : /home/rs/php/8.3/lib/php/test/oauth/tests/ |
Current File : /home/rs/php/8.3/lib/php/test/oauth/tests/oauthprovider_004.phpt |
--TEST-- OauthProvider tokenHandler/callTokenHandler --FILE-- <?php require 'oauth.inc'; function tokenHandler($provider) { echo 'tokenHandler called' . PHP_EOL; } try { $provider = new OAuthProvider(creationParams()); $provider->tokenHandler('tokenHandler'); $provider->callTokenHandler(); } catch (OAuthException $E) { echo OAuthProvider::reportProblem($E); } --EXPECT-- tokenHandler called