Compare commits

...

3 Commits

Author SHA1 Message Date
6292dde23b v1.0.1 pom 2021-07-07 11:07:04 -04:00
659f71c72c Merge branch 'develop' into stable 2021-07-07 11:06:35 -04:00
29214000c8 fixed oauth form param bug 2021-07-07 11:06:22 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.inteligr8</groupId>
<artifactId>common-rest-api</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<name>ReST API Client for Java</name>
<properties>

View File

@@ -56,9 +56,9 @@ public abstract class OAuthRequestFilter implements ClientRequestFilter {
form = this.createForm();
}
form.param("clientId", this.clientId);
form.param("client_id", this.clientId);
if (this.clientSecret != null)
form.param("clientSecret", this.clientSecret);
form.param("client_secret", this.clientSecret);
if (this.scope != null)
form.param("scope", this.scope);