We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
` $YOTI_CLIENT_SDK_ID = 'OUR Production SDK ID'; $YOTI_PEM = 'Path of our PEM file';
$docScanClient = new DocScanClient($YOTI_CLIENT_SDK_ID, $YOTI_PEM);
$sessionSpec = (new SessionSpecificationBuilder()) ->withClientSessionTokenTtl(600) ->withResourcesTtl(90000) ->withUserTrackingId($user->id) ->withRequestedCheck( (new RequestedDocumentAuthenticityCheckBuilder()) ->build() ) ->withRequestedTask( (new RequestedTextExtractionTaskBuilder()) ->withManualCheckAlways() ->build() ) ->withSdkConfig( (new SdkConfigBuilder()) ->withAllowsCameraAndUpload() ->withPrimaryColour('#2d9fff') ->withSecondaryColour('#FFFFFF') ->withFontColour('#FFFFFF') ->withPresetIssuingCountry('GBR') ->withSuccessUrl($successUrl) ->withErrorUrl($failureUrl) ->withPrivacyPolicyUrl('https://uat.dhigna.com/privacy-policy') ->withAllowHandoff(true) ->build() ) ->withNotifications( (new NotificationConfigBuilder()) ->withEndpoint('https://uat.dhigna.com/privacy-policy') ->withAuthToken('username:password') ->forResourceUpdate() ->forTaskCompletion() ->forCheckCompletion() ->forSessionCompletion() ->build() ) ->build(); $session = $docScanClient->createSession($sessionSpec);`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
"Server responded with 404 - APP_NOT_FOUND - The referenced application does not exist
When using the production keys to generate the session unable to generate the session
It is returning "Server responded with 404 - APP_NOT_FOUND - The referenced application does not exist"
`
$YOTI_CLIENT_SDK_ID = 'OUR Production SDK ID';
$YOTI_PEM = 'Path of our PEM file';
$docScanClient = new DocScanClient($YOTI_CLIENT_SDK_ID, $YOTI_PEM);
The text was updated successfully, but these errors were encountered: