{% extends "base.html" %} {% block title %}OAuth Clients - NanoIDP{% endblock %} {% block content %}
Request a token using client credentials:
curl -X POST '{{ request.url_root }}token' \
-u 'CLIENT_ID:CLIENT_SECRET' \
-d 'grant_type=password&username=USER&password=PASS'