fixed oauth form param bug
This commit is contained in:
parent
d7ac94c69d
commit
29214000c8
@ -56,9 +56,9 @@ public abstract class OAuthRequestFilter implements ClientRequestFilter {
|
|||||||
form = this.createForm();
|
form = this.createForm();
|
||||||
}
|
}
|
||||||
|
|
||||||
form.param("clientId", this.clientId);
|
form.param("client_id", this.clientId);
|
||||||
if (this.clientSecret != null)
|
if (this.clientSecret != null)
|
||||||
form.param("clientSecret", this.clientSecret);
|
form.param("client_secret", this.clientSecret);
|
||||||
if (this.scope != null)
|
if (this.scope != null)
|
||||||
form.param("scope", this.scope);
|
form.param("scope", this.scope);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user