OAuthProvider::timestampNonceHandler
Set the timestampNonceHandler handler callback
&reftitle.description;
public voidOAuthProvider::timestampNonceHandler
callablecallback_function
Sets the timestamp nonce handler callback, which will later be called with
OAuthProvider::callTimestampNonceHandler. Errors related to
timestamp/nonce are thrown to this callback.
&warn.undocumented.func;
&reftitle.parameters;
callback_function
The callable functions name.
&reftitle.returnvalues;
&return.void;
&reftitle.examples;
Example OAuthProvider::timestampNonceHandler callback
nonce === 'bad') {
return OAUTH_BAD_NONCE;
} elseif ($provider->timestamp == '0') {
return OAUTH_BAD_TIMESTAMP;
}
return OAUTH_OK;
}
?>
]]>
&reftitle.seealso;
OAuthProvider::callTimestampNonceHandler