php8.5
Home/ Manual/ oauth / oauthprovider/ OAuthProvider::consumerHandler

OAuthProvider::consumerHandler

PHP function Edit on GitHub ✎

(PECL OAuth >= 1.0.0)

Set the consumerHandler handler callback

Description

OAuthProvider::consumerHandler(callable $callback_function): void

Sets the consumer handler callback, which will later be called with OAuthProvider::callConsumerHandler.

Func

Parameters

callback_function

The callable functions name.

Return Values

Void

Examples

Example OAuthProvider::consumerHandler callback

php
<?php
function lookupConsumer($provider) {

    if ($provider->consumer_key === 'unknown') {
        return OAUTH_CONSUMER_KEY_UNKNOWN;
    } else if($provider->consumer_key == 'blacklisted' || $provider->consumer_key === 'throttled') {
        return OAUTH_CONSUMER_KEY_REFUSED;
    }

    $provider->consumer_secret = "the_consumers_secret";

    return OAUTH_OK;
}
?>

See Also

  • OAuthProvider::callConsumerHandler

Source: reference/oauth/oauthprovider/consumerhandler.xml · from the official PHP manual (php/doc-en)