Skip to content

Commit 13c9f05

Browse files
Pull request #38: Fix endpoint for making requests in ScoreClient
Merge in SDK/java_telesign_enterprise from hotfix/fix-endpoint to developer Squashed commit of the following: commit a56d0d8fd7249b3947ed5bfc0f5a7e8a12e86504 Author: Juan Camilo Martinez <jmartinez@telesign.com> Date: Fri Feb 6 13:09:13 2026 -0500 Fix endpoint for making requests in ScoreClient
1 parent 5ab2c20 commit 13c9f05

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

RELEASE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
4.0.1
2+
- Fix endpoint for making requests in ScoreClient
3+
14
4.0.0
25
- Added support for Intelligence Cloud to use new endpoint
36
- Removed Legacy PID Score

src/main/java/com/telesign/enterprise/ScoreClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ public class ScoreClient extends com.telesign.ScoreClient {
77
private static final String SDK_VERSION = ScoreClient.class.getPackage().getImplementationVersion();
88
private static final String SDK_SOURCE = "java_telesign_enterprise";
99
private static final String SDK_VERSION_DEPENDENCY = com.telesign.RestClient.class.getPackage().getImplementationVersion();
10+
private static final String DETECT_REST_ENDPOINT = "https://detect.telesign.com";
1011

1112
public ScoreClient(String customerId, String apiKey) {
12-
13-
super(customerId, apiKey, "https://rest-ww.telesign.com", SDK_SOURCE, SDK_VERSION, SDK_VERSION_DEPENDENCY);
13+
super(customerId, apiKey, DETECT_REST_ENDPOINT, SDK_SOURCE, SDK_VERSION, SDK_VERSION_DEPENDENCY);
1414
}
1515

1616
public ScoreClient(String customerId, String apiKey, String restEndpoint) {

0 commit comments

Comments
 (0)