Class: Telesign::AppVerifyClient

Inherits:
RestClient show all
Defined in:
lib/telesign/appverify.rb

Overview

App Verify is a secure, lightweight SDK that integrates a frictionless user verification process into existing native mobile applications.

Instance Method Summary collapse

Methods inherited from RestClient

#delete, generate_telesign_headers, #get, #initialize, #post, #put

Constructor Details

This class inherits a constructor from Telesign::RestClient

Instance Method Details

#status(external_id, **params) ⇒ Object

Retrieves the verification result for an App Verify transaction by external_id. To ensure a secure verification flow you must check the status using TeleSign’s servers on your backend. Do not rely on the SDK alone to indicate a successful verification.

See developer.telesign.com/docs/app-verify-android-sdk-self#section-get-status-service or developer.telesign.com/docs/app-verify-ios-sdk-self#section-get-status-service for detailed API documentation.



18
19
20
21
22
# File 'lib/telesign/appverify.rb', line 18

def status(external_id, **params)

  self.get(APPVERIFY_STATUS_RESOURCE % {:external_id => external_id},
           **params)
end