{% extends 'layouts/status_code_accordion-child'   %}
{% set id     = "authorization_method_not_allowed" %}
{% set title  = "Authorization Method Not Allowed" %}
{% set code   = 400                                %}
{% block desc %}
  The specified authentication method (in the Authorization header) is not allowed. <br />
  Allowed authorization methods are:
  <ul>
    <li>basic   (user:password)    </li>
    <li>token   (user:token)       </li>
    <li>session (user:session_key) </li>
  </ul>
{% endblock %}


