File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
articles/ai-services/computer-vision Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ You can utilize the liveness quick link website liveness.face.azure.com to turn
5858 #### [Java](#tab/java)
5959 ```java
6060 HttpRequest request = HttpRequest.newBuilder()
61- .uri(URI.create("https://liveness.face.azure.com/api/s"))
62- .header("authorization", "Bearer <session-authorization-token>")
63- .method("POST", HttpRequest.BodyPublishers.noBody())
64- .build();
61+ .uri(URI.create("https://liveness.face.azure.com/api/s"))
62+ .header("authorization", "Bearer <session-authorization-token>")
63+ .method("POST", HttpRequest.BodyPublishers.noBody())
64+ .build();
6565 HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
6666 System.out.println(response.body());
6767 ```
Original file line number Diff line number Diff line change @@ -223,6 +223,8 @@ items:
223223 href : concept-face-liveness-detection.md
224224 - name : Face liveness abuse monitoring
225225 href : concept-liveness-abuse-monitoring.md
226+ - name : Face liveness quick link
227+ href : concept-liveness-quick-link.md
226228
227229 - name : How-to guides
228230 items :
You can’t perform that action at this time.
0 commit comments