2014-10-01 03:14:18 +05:30
---
layout: default
title: Authorization server events
permalink: /authorization-server/events/
---
# Authorization server events
2014-10-01 13:19:18 +05:30
During the lifecycle of a request passing through the authorization server a number of events may be emitted.
2014-10-01 04:43:19 +05:30
You can subscribe to these events by attaching listeners to the authorization server.
2016-03-23 18:15:00 +05:30
To access the emitter call this method:
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
{% highlight php %}
$server->getEmitter(); // returns instance of \League\Event\EmitterInterface
{% endhighlight %}
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
## client.authentication.failed
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
{% highlight php %}
$server->getEmitter()->addListener(
'client.authentication.failed',
function (\League\OAuth2\Server\RequestEvent $event) {
// do something
}
);
{% endhighlight %}
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
This event is emitted when a client fails to authenticate. You might wish to listen to this event in order to ban clients that fail to authenticate after `n` number of attempts.
2014-10-01 04:43:19 +05:30
You can retrieve the request object that was used by calling `getRequest()` on the event object passed into your callable.
2016-03-23 18:15:00 +05:30
## user.authentication.failed
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
{% highlight php %}
$server->getEmitter()->addListener(
'user.authentication.failed',
function (\League\OAuth2\Server\RequestEvent $event) {
// do something
}
);
{% endhighlight %}
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
This event is emitted when a user fails to authenticate. You might wish to listen to this event in order to reset passwords or ban users that fail to authenticate after `n` number of attempts.
2014-10-01 04:43:19 +05:30
2016-03-23 18:15:00 +05:30
You can retrieve the request object that was used by calling `getRequest()` on the event object passed into your callable.