select client_secret_post authentication method by default

master
informatic 2020-05-31 19:07:17 +02:00
parent 033b46b360
commit cbfcdbd823
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ class ClientForm(FlaskForm):
"Token endpoint authentication method",
choices=[("client_secret_basic", "Basic"), ("client_secret_post", "POST"), ("client_secret_get", "Query args (DEPRECATED)")],
validators=[DataRequired()],
default='client_secret_post',
)
scope = MultiCheckboxField(