I'm working on adding OAuth to a RESTful API. Surprisingly, using PHP's OAuth and OAuthProvider classes (from pecl/oauth) I've not had any problems with signatures, etc.
Where I am encountering problems is in what happens when errors such as a bad timestamp occur. I'm setting up my provider as follows:
public function authenticate(){
try {
$provider = new OAuthProvider();
$provider->consumerHandler(array($this,'handleConsumer'));
$provider->timestampNonceHandler(array($this,'handleTimestampNonce'));
$provider->tokenHandler(array($this,'handleToken'));
$provider->isRequestTokenEndpoint(FALSE);
$provider->checkOAuthRequest();
} catch (Exception $e) {
// Do nothing.
}
}
When all of the handler functions return OAUTH_OK, the request is able to proceed as expected. To see what happens when the timestamp is bad, I've written my timestampNonceHandler like this:
public function handleTimestampNonce($provider){
return OAUTH_BAD_TIMESTAMP;
}
When I run this, passing a correctly signed request (yes, I'm sure), the response is an HTTP 500.
[headers_recv] => HTTP/1.1 500 Internal Server Error
Date: Wed, 14 Sep 2011 08:47:59 GMT
Server: Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.3.4
X-Powered-By: PHP/5.3.4
Content-Length: 648
Connection: close
Content-Type: 0
[body_recv] => Invalid nonce/timestamp combination
The message is right, but surely this should be an HTTP 401.
Am I doing something wrong here, or does OAuthProvider just treat any failure as an Internal Server Error?
Thanks in advance for your help.