public function onInitResourceAuth(Enlight_Event_EventArgs
$args) { if (!
$this->isApiCall
) { return null;
} $adapter =
new Zend_Auth_Adapter_Http([ 'accept_schemes' => 'basic digest',
'realm' => 'Shopware REST-API',
'digest_domains' => '/',
'nonce_timeout' => 3600,
]);
$adapter->
setBasicResolver( new BasicAuthResolver( $this->
get(ModelManager::
class) ) );