Contact Us

Where to Find Us

Address

409 Chester Street, Moree

Postal Address

PO Box 643

Moree NSW 2400

Phone

(02) 6752 3746

Email

office@moreecs.nsw.edu.au

Book a Tour!

3 + 7 =

Quick Links

Contact

Find Us: 409 Chester Street

Moree NSW 2400

P: 026752 3746

E: office@moreecs.nsw.edu.au

 

Social Media

projectName($project); // Set the properties of the event to be tracked. $event = (new Event()) ->setSiteKey($recaptchaKey) ->setToken($token); // Build the assessment request. $assessment = (new Assessment()) ->setEvent($event); try { $response = $client->createAssessment( $projectName, $assessment ); // Check if the token is valid. if ($response->getTokenProperties()->getValid() == false) { printf('The CreateAssessment() call failed because the token was invalid for the following reason: '); printf(InvalidReason::name($response->getTokenProperties()->getInvalidReason())); return; } // Check if the expected action was executed. if ($response->getTokenProperties()->getAction() == $action) { // Get the risk score and the reason(s). // For more information on interpreting the assessment, see: // https://cloud.google.com/recaptcha-enterprise/docs/interpret-assessment printf('The score for the protection action is:'); printf($response->getRiskAnalysis()->getScore()); } else { printf('The action attribute in your reCAPTCHA tag does not match the action you are expecting to score'); } } catch (exception $e) { printf('CreateAssessment() call failed with the following error: '); printf($e); } } // TO-DO: Replace the token and reCAPTCHA action variables before running the sample. create_assessment( '6LcpwJgpAAAAAFddHDdVYtpzMk-WoTE97JFTzYYH', 'YOUR_USER_RESPONSE_TOKEN', 'website-1710452990780', 'YOUR_RECAPTCHA_ACTION' ); ?>