Can we use faceliveness rest APIs in any other language ?

0

Can we use faceliveness APIs which are shared in resources, to CreateSession, StartLivenessSession and to get result from any other language which supports RestAPI call. I am trying to get this integrated with Salesforce' Apex Language. The createSession rest api creates the session Id, but StartLivenessSession always fails via custom Rest API call.

已提問 4 個月前檢視次數 142 次
1 個回答
0

Hi,

Yes, AWS service APIs can be used from any language if you use them at the REST layer.

You have then to properly structure and encode all parameters to match them,

The hard part is usually to get SigV4 right to sign those requests with valid AWS credentials. See https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html

To avoid this pain, this project may be useful to you: https://github.com/mattandneil/aws-sdk

It is a good starting point to get wroking Apex code and extend it to faceliveness API. The repo doesn't seem to specify license. So, I'd suggest to reach the authors.

Best,

Didier

profile pictureAWS
專家
已回答 4 個月前
  • I can manage to get AWS credential working fine. But as written earlier the CreateFaceLivenessSession rest api creates the session Id successfully, but StartLivenessSession always fails With a 200 HTTP code but with response body as

    { "Output": { "__type": "com.amazon.coral.service#UnknownOperationException", "message": null }, "Version": "1.0" }

    This API has given this spec.

    https://docs.aws.amazon.com/rekognition/latest/APIReference/API_rekognitionstreaming_StartFaceLivenessSession.html

    But I am not sure why is AWS failing to recognize the service.

    I think "StartFaceLivenessSession" cannot be called from REST api, apart from supported AWS sdk. Please confirm this once, if you have any strong evidence for this.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南