@@ -199,7 +199,7 @@ authentication with SHA256WITHRSA.
199
199
200
200
#### formData
201
201
Data which should be passed in the request (for ` POST ` requests
202
- usually). For ` GET ` requests, set this value to ` null ` .
202
+ usually). For ` GET ` requests, this value is not necessary .
203
203
204
204
#### password
205
205
The password of the keystore. Not required for L1.
@@ -346,7 +346,7 @@ try {
346
346
AuthParam authParam = new AuthParam ();
347
347
348
348
authParam. url = URI . create(" https://<<URL>>/api/v1" );
349
- authParam. httpMethod = " GET " ;
349
+ authParam. httpMethod = " POST " ;
350
350
authParam. appName = " <<appId>>" ;
351
351
authParam. appSecret = " <<appSecret>>" ;
352
352
authParam. formData = formData;
@@ -385,7 +385,7 @@ try {
385
385
AuthParam authParam = new AuthParam ();
386
386
387
387
authParam. url = URI . create(baseUrl);
388
- authParam. httpMethod = " GET " ;
388
+ authParam. httpMethod = " POST " ;
389
389
authParam. appName = " <<appId>>" ;
390
390
String certFileName = " certificates/ssc.alpha.example.com.p12" ;
391
391
String password = " <<passphrase>>" ;
@@ -428,7 +428,7 @@ try {
428
428
AuthParam authParam_WWW = new AuthParam ();
429
429
String baseUrl_WWW = String . format(" https://<<URL_WWW>>/api/v1?%s" , queryString);
430
430
authParam_WWW. url = URI . create(baseUrl_WWW);
431
- authParam_WWW. httpMethod = " GET " ;
431
+ authParam_WWW. httpMethod = " POST " ;
432
432
authParam_WWW. appName = " <<appId_WWW>>" ;
433
433
String certFileName = " certificates/ssc.alpha.example.com.p12" ;
434
434
String password = " <<passphrase>>" ;
@@ -437,7 +437,7 @@ try {
437
437
authParam_WWW. formData = formData;
438
438
439
439
AuthParam authParam_WOG = new AuthParam ();
440
- authParam_WOG. httpMethod = " GET " ;
440
+ authParam_WOG. httpMethod = " POST " ;
441
441
authParam_WOG. appName = " <<appId_WOG>>" ;
442
442
authParam_WOG. appSecret = " <<appSecret_WOG>>" ;
443
443
String baseUrl_WOG = String . format(" https://<<URL_WOG>>/api/v1?%s" , queryString);
@@ -478,7 +478,7 @@ String queryString = queryData.toString(true);
478
478
479
479
try {
480
480
AuthParam authParam_WOG = new AuthParam ();
481
- authParam_WOG. httpMethod = " GET " ;
481
+ authParam_WOG. httpMethod = " POST " ;
482
482
authParam_WOG. appName = " <<appId_WOG>>" ;
483
483
authParam_WOG. appSecret = " <<appSecret_WOG>>" ;
484
484
String baseUrl_WOG = String . format(" https://<<URL_WOG>>/api/v1?%s" , queryString);
@@ -487,7 +487,7 @@ try {
487
487
AuthParam authParam_WWW = new AuthParam ();
488
488
String baseUrl_WWW = String . format(" https://<<URL_WWW>>/api/v1?%s" , queryString);
489
489
authParam_WWW. url = URI . create(baseUrl_WWW);
490
- authParam_WWW. httpMethod = " GET " ;
490
+ authParam_WWW. httpMethod = " POST " ;
491
491
authParam_WWW. appName = " <<appId_WWW>>" ;
492
492
String certFileName = " certificates/ssc.alpha.example.com.p12" ;
493
493
String password = " <<passphrase>>" ;
0 commit comments