如何通过rest API执行Flash通话验证?

时间:2018-09-05 19:01:19

标签: sinch sinch-verification

我有一个超过1000个电话号码的列表,我正在尝试通过短拨验证REST API进行快速通话验证。但是,我总是从端点获得此响应...

[
    callId:fa61c8ae-2936-4c3d-a89c-ca852d9bd464, 
    reason:Expired, 
    method:flashcall, 
    identity:[
        endpoint:+2348166180681, 
        verified:false, type:number
    ], 
    id:fa61c8ae-2936-4c3d-a89c-ca852d9bd464, 
    event:VerificationResultEvent, 
    status:FAIL
]

我正在执行以下步骤...

  1. https://verificationapi-v1.sinch.com/verification/v1/verifications发出POST请求 与下面的身体...

    ["identity" : ["type": "number","endpoint": "+xxxxxxxxxx"], "flashCallOptions": ["dialTimeout": 10],"method": "flashCall"]

  2. verificationRequestEvent并回复[action: "allow"]

执行此操作时,我会使用上面显示的VerificationResultEvent ping我的验证网络钩子。

我有没有做对的事情?我目前的怀疑是,我应该再提出一个POST请求,而不是在第二步中用[action: "allow"]进行响应?

0 个答案:

没有答案