Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6292dde23b | |||
659f71c72c | |||
29214000c8 |
2
pom.xml
2
pom.xml
@@ -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>
|
||||
|
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user