{% block app_show %}
{% trans 'Les parametres oauth de votre application.' %}
Client ID | {{app.get_client_id}} | |
Client Secret | {{app.get_client_secret}} | |
{% trans 'URL de callback' %} | {% if app.get_type == constant('API_OAuth2_Application::DESKTOP_TYPE') %}{{app.get_redirect_uri}} | {% else %}{{app.get_redirect_uri}} | {%endif%}
Authorize endpoint | {{registry.get('GV_ServerName')}}api/oauthv2/authorize | |
Access endpoint | {{registry.get('GV_ServerName')}}api/oauthv2/token | |
{% trans 'Activer le grant_type de type password pour votre application' %} |
{% trans 'Les paramétres oauth de votre application.' %}
{% trans 'Token' %} | {% if not token is none %} {{token|default('')}} {% else %} {% trans 'Le token n\'a pas encore ete genere' %} {% endif %} |