を使用して安らかなAPI認証のためのヘッダーを設定する方法、認証のためのヘッダ情報を設定する方法Yiiの例から、私はこのコードを持っているRESTclientアドオンのFirefox
private function _checkAuth()
{
// Check if we have the USERNAME and PASSWORD HTTP headers set?
if(!(isset($_SERVER['HTTP_X_USERNAME']) and isset($_SERVER['HTTP_X_PASSWORD']))) {
// Error: Unauthorized
$this->_sendResponse(401);
}
$username = $_SERVER['HTTP_X_USERNAME'];
$password = $_SERVER['HTTP_X_PASSWORD'];
// Find the user
$user=User::model()->find('LOWER(username)=?',array(strtolower($username)));
$this->_sendResponse('200','$username');
if($user===null) {
// Error: Unauthorized
$this->_sendResponse(401, 'Error: User Name is invalid');
}
else if(!$user->validatePassword($password)) {
// Error: Unauthorized
$this->_sendResponse(401, 'Error: User Password is invalid');
}
}
。 リクエストにHTTP_X_USERNAMEとHTTP_X_PASSWORDを設定する方法。
RESTClientアドオンの名前、値、本文は? ありがとうございました