class Telesign::AppVerifyClient

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

Public Instance Methods

status(external_id, **params) click to toggle source

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.

# File lib/telesign/appverify.rb, line 18
def status(external_id, **params)

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