Rate Limiting

This commit is contained in:
Marko Milić 2018-09-26 16:14:45 +02:00 committed by GitHub
parent b8384ea8d5
commit 2be7d7aeab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -448,6 +448,19 @@ Description of the headers above:
3. `X-Rate-Limit-Reset` - The number of seconds left in the current period
Please note that first will be checked `per minute` call limit then `per hour` etc.
Info about rate limiting availibility at some instance can be found over next API endpoint: https://apisandbox.openbankproject.com/obp/v3.1.0/root. Response we are interested in looks lke:
```json
{
...
,
"rate_limiting":{
"enabled":true,
"redis_available":true,
"is_active":true
}
}
```
## Scala / Lift