{"id":138596,"date":"2022-11-10T15:32:37","date_gmt":"2022-11-10T06:32:37","guid":{"rendered":"https:\/\/support.questetra.com\/?p=138596"},"modified":"2026-04-30T09:28:44","modified_gmt":"2026-04-30T00:28:44","slug":"google-recaptcha-token-verify-2022","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/addons\/google-recaptcha-token-verify-2022\/","title":{"rendered":"Google reCAPTCHA #Token: Verify"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><div class=\"su-box su-box-style-default\" id=\"\" style=\"border-color:#003e04;border-radius:0px;max-width:none\"><div class=\"su-box-title\" style=\"background-color:#267137;color:#ffffff;border-top-left-radius:0px;border-top-right-radius:0px\">Google reCAPTCHA: Token, Verify<\/div><div class=\"su-box-content su-u-clearfix su-u-trim\" style=\"border-bottom-left-radius:0px;border-bottom-right-radius:0px\"> Verifies the reCAPTCHA token (reCAPTCHA user response token). Validation boolean (true: human) and\/or validation score (1.0: human) are output. The token is valid for two minutes, and can only be verified once.<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1\" data-anchor=\"configs\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Configs<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n<ul class=\"fa-ul\">\n<li>U: Select HTTP_Authz Setting (Secret Key as &#8220;Fixed Value&#8221;)<span style=\"color:#990000;\"> *<\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> A1: Set reCAPTCHA Token<span style=\"color:#990000;\"> *<\/span><span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li> B1: Select STRING that stores true\/false (update)<\/li>\n<li> B2: Select NUM or STRING that stores Score 0.0-1.0 (update)<\/li>\n<li> B3: Select STRING that stores reCAPTCHA Action (update)<\/li>\n<li> B4: Select STRING that stores reCAPTCHA Hostname (update)<\/li>\n<\/ul>\n<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1 su-spoiler-closed\" data-anchor=\"script\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Script (click to open)<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>\/\/ GraalJS Script (engine type: 2)\n\n\/\/\/\/\/\/\/\/ START &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\nmain();\nfunction main(){ \n\n\/\/\/\/\/\/ == Config Retrieving \/ \u5de5\u7a0b\u30b3\u30f3\u30d5\u30a3\u30b0\u306e\u53c2\u7167 ==\nconst strAuthzSetting     = configs.get      ( &quot;AuthzConfU&quot; );   \/\/\/ REQUIRED\n  engine.log( &quot; AutomatedTask Config: Authz Setting: &quot; + strAuthzSetting );\n  const strRecSecretKey   = httpClient.getOAuth2Token( strAuthzSetting );\n    \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpClientWrapper\n    \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpClientWrapper\nconst strRecToken         = configs.get      ( &quot;StrConfA1&quot; );    \/\/\/ REQUIRED\n  if( strRecToken       === &quot;&quot; ){\n    throw new Error( &quot;\\n AutomatedTask ConfigError:&quot; +\n                     &quot; Config {A1: RecToken} must be non-empty \\n&quot; );\n  }\nconst strPocketBoolean    = configs.getObject( &quot;SelectConfB1&quot; ); \/\/ NotRequired\nconst numstrPocketScore   = configs.getObject( &quot;SelectConfB2&quot; ); \/\/ NotRequired\nconst strPocketAction     = configs.getObject( &quot;SelectConfB3&quot; ); \/\/ NotRequired\nconst strPocketHostname   = configs.getObject( &quot;SelectConfB4&quot; ); \/\/ NotRequired\n\n\n\/\/\/\/\/\/ == Data Retrieving \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u306e\u53c2\u7167 ==\n\/\/ (Nothing. Retrieved via Expression Language in Config Retrieving)\n\n\n\/\/\/\/\/\/ == Calculating \/ \u6f14\u7b97 ==\n\/\/\/\/ request1, prepare\n\/\/ Google Developer Products &gt; reCAPTCHA &gt; Guides\n\/\/ https:\/\/developers.google.com\/recaptcha\/docs\/v3#site_verify_response\n\/\/ https:\/\/developers.google.com\/recaptcha\/docs\/verify#api_request\nlet request1Uri = &quot;https:\/\/www.google.com\/recaptcha\/api\/siteverify&quot;;\nlet request1    = httpClient.begin(); \/\/ HttpRequestWrapper\n    request1    = request1.formParam( &quot;secret&quot;,   strRecSecretKey );\n    request1    = request1.formParam( &quot;response&quot;, strRecToken     );\n\n\/\/\/\/ request1, try\nconst response1     = request1.post( request1Uri ); \/\/ HttpResponseWrapper\nengine.log( &quot; AutomatedTask ApiRequest1 Start: &quot; + request1Uri );\nconst response1Code = response1.getStatusCode() + &quot;&quot;;\nconst response1Body = response1.getResponseAsString() + &quot;&quot;;\nengine.log( &quot; AutomatedTask ApiResponse Status: &quot; + response1Code );\nif( response1Code !== &quot;200&quot;){\n  throw new Error( &quot;\\n AutomatedTask UnexpectedResponseError: &quot; +\n                    response1Code + &quot;\\n&quot; + response1Body + &quot;\\n&quot; );\n}\n\n\/\/\/\/ response1, parse\nconst response1Obj = JSON.parse( response1Body );\n\n\/* engine.log( response1Body ); \/\/ debug\n{\n  &quot;success&quot;: true,\n  &quot;challenge_ts&quot;: &quot;2022-11-09T08:45:57Z&quot;,\n  &quot;hostname&quot;: &quot;support.questetra.com&quot;,\n  &quot;score&quot;: 0.9,\n  &quot;action&quot;: &quot;DemoInquiry&quot;\n}\n*\/\n\n\n\n\/\/\/\/\/\/ == Data Updating \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u3078\u306e\u4ee3\u5165 ==\n\nif( strPocketBoolean !== null ){\n  engine.setData( strPocketBoolean, ( response1Obj.success + &quot;&quot; ) );\n} \/\/ java.lang.Boolean \u21d2 string\nif( numstrPocketScore !== null ){\n  let numTmp = response1Obj?.score; \/\/ reCAPTCHA v2\n  if( numTmp !== undefined ){\n    if( numstrPocketScore.matchDataType( &quot;STRING&quot; ) ){\n      engine.setData( numstrPocketScore, ( numTmp + &quot;&quot; ) );\n    }else{\n      engine.setData( numstrPocketScore, new java.math.BigDecimal( numTmp ) );\n    }\n  }\n}\nif( strPocketAction !== null ){\n  engine.setData( strPocketAction, ( response1Obj?.action ?? &quot;&quot; ) ); \/\/ No set, reCAPTCHA v2, \n}\nif( strPocketHostname !== null ){\n  engine.setData( strPocketHostname, response1Obj.hostname );\n}\n\/\/ &quot;?.&quot;: Optional chaining (ES11)\n\/\/ https:\/\/developer.mozilla.org\/docs\/Web\/JavaScript\/Reference\/Operators\/Optional_chaining\n\/\/ &quot;??&quot;: Nullish coalescing operator (ES11)\n\/\/ https:\/\/developer.mozilla.org\/docs\/Web\/JavaScript\/Reference\/Operators\/Nullish_coalescing\n\/\/ \u30aa\u30d7\u30b7\u30e7\u30ca\u30eb\u30c1\u30a7\u30fc\u30f3\u6f14\u7b97\u5b50\u3068Null\u5408\u4f53\u6f14\u7b97\u5b50\u306e\u7d44\u307f\u5408\u308f\u305b\n\n} \/\/\/\/\/\/\/\/ END &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\n\n\n\/*\nNotes:\n- reCAPTCHA is a CAPTCHA system that enables web hosts to distinguish between human access and bot access.\n    - reCAPTCHA v3 is a free service from Google that helps protect websites from spam and abuse.\n    - CAPTCHA: Completely Automated Public Turing test to tell Computers and Humans Apart\n- The reCAPTURE Token is generated on the website side.\n    - HTML\/JavaScript implementation is required. Example code:\n        - https:\/\/support.questetra.com\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/\n    - Official Document\n        - https:\/\/developers.google.com\/recaptcha\/docs\/v3\n- The reCAPTURE Token is validated on the backend side (the server side that received the Form data).\n    - Verification results are output as &quot;boolean&quot; and &quot;score&quot;.\n        - If the boolean value is &quot;true&quot;, it was very likely a human operation.\n        - If the boolean value is &quot;false&quot;, it was very likely a bot operation.\n        - The closer the score is to &quot;1.0&quot;, the higher the possibility of human operation.\n- If you place this &quot;Addon Automated Step&quot; on the Workflow diagram, it will be automatically verified.\n    - A verification request is sent to the Google reCAPTCHA v3 server. (API communication)\n    - Automatically judge whether the person filling out the form on the website is robot or human.\n\nAPPENDIX\n- Registration is required to use reCAPTCHA. (to get two types of keys)\n    - https:\/\/www.google.com\/recaptcha\/admin\/\n        - reCAPTCHA type: `reCAPTCHA v3`\n        - Site Key: (for Token generation)\n        - Secret Key: (for Token verification)\n- To place this &quot;Add-on Automated Step&quot; on the design screen of the workflow diagram\n    - Import Addon-XML (definition file of this automated step) to Workflow App in advance.\n    - The system admins can also make it available in all Workflow Apps. (App-shared Add-on)\n    - Manual M415: Adding an Auto-Step to be Used in a Business Process Definition\n        - https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247792-M415\n- To activate the Workflow App including this &quot;Add-on automated Step&quot;, &quot;HTTP Authorization Setting&quot; is required.\n    - Set the &quot;Secret Key&quot; obtained by reCAPTCHA in advance as an API communication token. &quot;Token Fixed Value&quot;\n    - (&quot;OAuth2 authorization&quot; and &quot;Basic authentication&quot; are not used)\n\nNotes-ja:\n- &quot;reCAPTCHA&quot; \u306f\u3001\u30b9\u30d1\u30e0\u3084\u4e0d\u6b63\u5229\u7528\u304b\u3089Web\u30b5\u30a4\u30c8\u3092\u5b88\u308b Google \u30b5\u30fc\u30d3\u30b9\u3067\u3059\u3002\n    - Web\u30db\u30b9\u30c8\u5074\u304c\u4eba\u9593\u30a2\u30af\u30bb\u30b9\u3068Bot\u30a2\u30af\u30bb\u30b9\u3092\u533a\u5225\u3059\u308b\u305f\u3081\u306e CAPTCHA \u30b7\u30b9\u30c6\u30e0\u3067\u3059\u3002\n    - &quot;CAPTCHA&quot; \u3068\u306f &quot;Completely Automated Public Turing test to tell Computers and Humans Apart&quot; \u306e\u7565\u3067\u3059\u3002\n- reCAPTURE Token \u306f\u3001Web\u30b5\u30a4\u30c8\u5074\u3067\u751f\u6210\u3055\u308c\u307e\u3059\u3002\n    - HTML\/JavaScript \u306b\u3088\u308b\u5b9f\u88c5\u304c\u5fc5\u8981\u3067\u3059\u3002\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u2193\n        - https:\/\/support.questetra.com\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/\n    - \u30aa\u30d5\u30a3\u30b7\u30e3\u30ebDocument\n        - https:\/\/developers.google.com\/recaptcha\/docs\/v3\n- reCAPTURE Token \u306f\u3001\u30d0\u30c3\u30af\u30a8\u30f3\u30c9\u5074\uff08Form \u30c7\u30fc\u30bf\u3092\u53d7\u4fe1\u3057\u305f\u30b5\u30fc\u30d0\u5074\uff09\u3067\u691c\u8a3c\u3055\u308c\u307e\u3059\u3002\n    - \u691c\u8a3c\u7d50\u679c\u306f\u300c\u771f\u507d\u5024\u300d\u304a\u3088\u3073\u300c\u30b9\u30b3\u30a2\u300d\u3068\u3057\u3066\u51fa\u529b\u3055\u308c\u307e\u3059\u3002\n        - \u771f\u507d\u5024\u304c &quot;true&quot; \u306e\u5834\u5408\u3001\u4eba\u9593\u64cd\u4f5c\u3060\u3063\u305f\u53ef\u80fd\u6027\u304c\u975e\u5e38\u306b\u9ad8\u3044\u3068\u8a00\u3048\u307e\u3059\u3002\n        - \u771f\u507d\u5024\u304c &quot;false&quot; \u306e\u5834\u5408\u3001\u30dc\u30c3\u30c8\u64cd\u4f5c\u3060\u3063\u305f\u53ef\u80fd\u6027\u304c\u975e\u5e38\u306b\u9ad8\u3044\u3068\u8a00\u3048\u307e\u3059\u3002\n        - \u30b9\u30b3\u30a2\u304c &quot;1.0&quot; \u306b\u8fd1\u3051\u308c\u3070\u8fd1\u3044\u307b\u3069\u4eba\u9593\u64cd\u4f5c\u306e\u53ef\u80fd\u6027\u304c\u9ad8\u3044\u3068\u8a00\u3048\u307e\u3059\u3002\n- \u3053\u306e\uff3b\u30a2\u30c9\u30aa\u30f3\u81ea\u52d5\u5de5\u7a0b\uff3d\u3092\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u56f3\u306b\u914d\u7f6e\u3059\u308c\u3070\u3001\u6848\u4ef6\u304c\u5de5\u7a0b\u306b\u5230\u9054\u3057\u305f\u969b\u3001\u81ea\u52d5\u7684\u306b\u691c\u8a3c\u3055\u308c\u307e\u3059\u3002\n    - Google reCAPTCHA v3 \u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u691c\u8a3c\u30ea\u30af\u30a8\u30b9\u30c8\u304c\u9001\u4fe1\u3055\u308c\u307e\u3059\u3002\uff08API\u901a\u4fe1\uff09\n    - Web\u30b5\u30a4\u30c8\u306e\u30d5\u30a9\u30fc\u30e0\u5165\u529b\u8005\u304c\u300c\u30ed\u30dc\u30c3\u30c8\u3060\u3063\u305f\u304b\uff1f\u4eba\u9593\u3060\u3063\u305f\u304b\uff1f\u300d\u306b\u3064\u3044\u3066\u81ea\u52d5\u5224\u5b9a\u3055\u308c\u307e\u3059\u3002\n\nAPPENDIX-ja\n- reCAPTCHA \u3092\u5229\u7528\u3059\u308b\u306b\u306f\u3001Web\u30b5\u30a4\u30c8\u306e\u4e8b\u524d\u767b\u9332\u304c\u5fc5\u8981\u3067\u3059\u3002\uff08\u4e8c\u7a2e\u985e\u306e\u30ad\u30fc\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059\uff09\n    - https:\/\/www.google.com\/recaptcha\/admin\/\n        - reCAPTCHA type: `reCAPTCHA v3`\n        - Site Key: (Token\u751f\u6210\u306b\u5fc5\u8981\u3067\u3059)\n        - Secret Key: (Token\u691c\u8a3c\u306b\u5fc5\u8981\u3067\u3059)\n- \u3053\u306e\uff3b\u30a2\u30c9\u30aa\u30f3\u81ea\u52d5\u5de5\u7a0b\uff3d\u3092\u3001\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u56f3\u306e\u8a2d\u8a08\u753b\u9762\u3067\u914d\u7f6e\uff08\u5229\u7528\uff09\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u2026\u3001\n    - \u4e88\u3081\u3001\u30a2\u30c9\u30aa\u30f3XML\uff08\u3053\u306e\u81ea\u52d5\u5de5\u7a0b\u306e\u5b9a\u7fa9\u30d5\u30a1\u30a4\u30eb\uff09\u3092\u3001\uff3bWorkflow\u30a2\u30d7\u30ea\uff3d\u306b\u8ffd\u52a0\uff08\u30a2\u30c9\u30aa\u30f3\uff09\u3057\u307e\u3059\u3002\n    - \u30b7\u30b9\u30c6\u30e0\u7ba1\u7406\u8005\u306e\u5834\u5408\u3001Workflow\u57fa\u76e4\u306e\u5168\u30a2\u30d7\u30ea\u3067\u914d\u7f6e\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u8a2d\u5b9a\u3082\u53ef\u80fd\u3067\u3059\u3002\uff08\u30a2\u30d7\u30ea\u5171\u6709\u30a2\u30c9\u30aa\u30f3\uff09\n        - \u30de\u30cb\u30e5\u30a2\u30eb M415: \u696d\u52d9\u30d7\u30ed\u30bb\u30b9\u5b9a\u7fa9\u3067\u5229\u7528\u53ef\u80fd\u306a\u81ea\u52d5\u5de5\u7a0b\u3092\u8ffd\u52a0\u3059\u308b (Professional edition)\n        - https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247792-M415\n- \u3053\u306e\uff3b\u30a2\u30c9\u30aa\u30f3\u81ea\u52d5\u5de5\u7a0b\uff3d\u3092\u542b\u3080\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30a2\u30d7\u30ea\u3092\u904b\u7528\u3059\u308b\u306b\u306f\uff3bHTTP \u8a8d\u8a3c\u8a2d\u5b9a\uff3d\u304c\u5fc5\u8981\u3067\u3059\u3002\n    - \u4e88\u3081\u3001reCAPTCHA \u3067\u53d6\u5f97\u3057\u305f &quot;Secret Key&quot; \u3092\u901a\u4fe1\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u30bb\u30c3\u30c8\u3057\u307e\u3059\u3002\uff3b\u30c8\u30fc\u30af\u30f3\u76f4\u63a5\u6307\u5b9a\uff3d\n    - \uff08&quot;OAuth2 \u8a8d\u53ef&quot; \u3084 &quot;Basic \u8a8d\u8a3c&quot; \u3068\u3044\u3063\u305f\u7ba1\u7406\u8005\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u7d10\u3065\u304f\u6a29\u9650\u7ba1\u7406\u306f\u5229\u7528\u3055\u308c\u307e\u305b\u3093\uff09\n*\/\n\n<\/code><\/pre><\/div>\n\n\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image alignright\"><a href=\"#\"><img decoding=\"async\" src=\"data:image;base64,\niVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA8xJREFUWEfN\nl11sFFUYhp+zM7ML3d2mpQRJJQFRwaiRFDEabaNsNUqaGqImBKOYwIXAjRKrGLcXXLRGDfGHGIEL\nvVEgetELjAY1XblAQ8S0XKBJ0ZBigq2xWMr+ZHdnZ46Z2e7u7N\/stFrrSfZmZ877Pef73vOdM4JF\nHsJr\/N4DvzeltOYngM1S0oGQa0C05ufLaaQYF4JR4Nsm\/frQ5wfaU160GwI89FZipS\/HfiS7gSVe\nRIE0giOmypunXwlNus1xBYgMxHcjxEEg6DFw5WtJpOyL9YeP1JtfFyAymPwA5J55Bq6YJg7HosG9\ntbRqAkQG4scRYvu\/E3xWRcoTsf7w05WaVQC1Vr56uY\/7b1W4rV1hZYugLSQIaOVSMym4lpL8NmVy\n\/rLBmTGDVFY2zEQZwGzNDxdmPXKnylP3aqxd4UMISGUkU3HJVeuXLIn7BLS3+mhpEiyz4FTI6PDD\npRyfndX5+YpZApFyj9MTRQDb7Tq\/Fgy37T6NHV1+DFPaq\/n0rM7lKYeQS3061ys8eY\/GHasUJmdM\n3jiZcUIkTY1bCrujCBB5PfEOkhcLun09AR67S+XkiM6hr7LzssPRXUtpbxUcOpXlmwu5kobg3dhr\noX3WHzaA1WSSWvNV5z63ALZsUJlJSYbO6Qydy9WoaW0uyzM7ujQ616lkDVkNAOmgfr3NalY2QPdg\n4hkJHzvl9m0J0NOh5gkB3cib7I9rJhMz0vbDL5MmwYCwPWLVfVWbjxXNgtASgeULayQzkvdOZRn+\nyZGB\/MqfHY6GPikAfChhpxNg8+0qLzzqJ7y0YbN0Lc\/YhEnfsXRV9gR8NBwN7bLVIwOJEQQdlUqP\nb9R4rkujJTh3CGuPXJwwef\/rMgM6dgOjsf7QxjzAYPyv0sFSjrFhtcLeh\/3cfIOvWI5GjjRMODOW\n4+AXWRffyOlYNLxsFiBR2THKYjT5BX09fjrXqyg+9\/DxtOTE97q9bRuNWDRktRcrA+4ABaGdD\/rZ\nukm1jVdrXJk2OTqc5buLRqPY9nMHQP0SVCo9sE7h+W4\/N7aWUmFK+PGSwdtfZvgz7ppMh5yzBHVM\nWG8Zd9+ksL83YJ8J1rB6\/0vH0p5WXXxJOkzYPZio2oZuah1rFF7tDbA8nAcYGTd4+fjcAMq2Ya1G\n9B8AlBpRrVa8wADlrdjeCRWH0YICVB5GVrDK43gBAWofx3YW8pfQ4oWkHsQ\/MmG9C0khmJfLqNUZ\nN61V7BPQGlMJyei4l+ZTfTn9\/11K55IJ751njtfyIsRifpgUIBb108yZ4kX7OPVe5\/m9+TdP2MMw\ngr8dtAAAAABJRU5ErkJggg==\n\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-cloud-download-alt\"><\/i> Download<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a rel=\"noreferrer noopener\" href=\"https:\/\/drive.google.com\/file\/d\/1ZpIzussDYYSU3lQy0gvc3DgkLlRNUX8X\/view?usp=drivesdk\" target=\"_blank\">google-recaptcha-token-verify-2022.xml<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/drive.google.com\/file\/d\/13PADg7_FtGjYnsXs0K8o939dJ6E1n1F5\/view?usp=sharing\" data-type=\"link\" data-id=\"https:\/\/drive.google.com\/file\/d\/13PADg7_FtGjYnsXs0K8o939dJ6E1n1F5\/view?usp=sharing\">google-recaptcha-token-verify-2023.xml<\/a>\n<ul class=\"wp-block-list\">\n<li>2023-08-17 (C) Questetra, Inc. (MIT License)<\/li>\n\n\n\n<li>for &#8220;GraalJS standard (engine-type 3)&#8221; on v15.0 or above<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><a href=\"https:\/\/drive.google.com\/file\/d\/1oJ3lvL73X0nfprDqVzEPgSOLTR2ax1ue\/view?usp=sharing\">google-recaptcha-token-verify-2026.xml<\/a>\n<ul class=\"wp-block-list\">\n<li>2026-04-29 (C) Questetra, Inc. (MIT License)<\/li>\n\n\n\n<li>Due to the deprecation of the methods <code>getOAuth2Token(String)<\/code> at v18.<\/li>\n\n\n\n<li><a href=\"https:\/\/support.questetra.com\/ja\/versions\/version-180\/\">https:\/\/support.questetra.com\/ja\/versions\/version-180\/<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\">2022-11-09 (C) Questetra, Inc. (MIT License)<br><a href=\"https:\/\/support.questetra.com\/en\/addons\/google-recaptcha-token-verify-2022\/\">https:\/\/support.questetra.com\/addons\/google-recaptcha-token-verify-2022\/<\/a><br><i class=\"fal fa-info-circle\"><\/i> The Addon-import feature is available with <span style=\"color:#4a86e8\" class=\"has-inline-color\"><strong>Professional<\/strong><\/span> edition.<br>How to add on: <a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247792-M415\">(M415: Adding an Auto-Step to be Used in a Business Process Definition)<\/a><br>Freely modifiable JavaScript (ECMAScript) code. No warranty of any kind.<\/p>\n\n\n<div class=\"su-divider su-divider-style-dashed\" style=\"margin:30px 0;border-width:8px;border-color:#009900\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-lightbulb-exclamation\"><\/i> Notes<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>reCAPTCHA is a CAPTCHA system that enables web hosts to distinguish between human access and bot access.\n<ul class=\"wp-block-list\">\n<li>reCAPTCHA v3 is a free service from Google that helps protect websites from spam and abuse.<\/li>\n\n\n\n<li>CAPTCHA: Completely Automated Public Turing test to tell Computers and Humans Apart<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>The reCAPTCHA Token is generated on the website side.\n<ul class=\"wp-block-list\">\n<li>HTML\/JavaScript implementation is required. Example code:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/support.questetra.com\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/\">https:\/\/support.questetra.com\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Official Document\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/developers.google.com\/recaptcha\/docs\/v3\" rel=\"nofollow\">https:\/\/developers.google.com\/recaptcha\/docs\/v3<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>The reCAPTCHA Token is validated on the backend side (the server side that received the Form data).\n<ul class=\"wp-block-list\">\n<li>Verification results are output as &#8220;boolean&#8221; and &#8220;score&#8221;.\n<ul class=\"wp-block-list\">\n<li>If the boolean value is &#8220;true&#8221;, it was very likely a human operation.<\/li>\n\n\n\n<li>If the boolean value is &#8220;false&#8221;, it was very likely a bot operation.<\/li>\n\n\n\n<li>The closer the score is to &#8220;1.0&#8221;, the higher the possibility of human operation.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>If you place this &#8220;Addon Automated Step&#8221; on the Workflow diagram, it will be automatically verified.\n<ul class=\"wp-block-list\">\n<li>A verification request is sent to the Google reCAPTCHA v3 server. (API communication)<\/li>\n\n\n\n<li>Automatically judge whether the person filling out the form on the website is robot or human.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-images\"><\/i> Capture<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" data-attachment-id=\"138584\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/climber-webinvoice-file-upload\/attachment\/google-recaptcha-token-verify-capture-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&amp;ssl=1\" data-orig-size=\"1200,675\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"google-recaptcha-token-verify-capture-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1024%2C576&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=1200%2C675&#038;ssl=1\" alt=\"Google reCAPTCHA: Token, Verify\" class=\"wp-image-138584\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?w=1200&amp;ssl=1 1200w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full q-box\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" data-attachment-id=\"138558\" data-permalink=\"https:\/\/support.questetra.com\/en\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/attachment\/workflow-trigger-recaptcha-token\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?fit=1200%2C675&amp;ssl=1\" data-orig-size=\"1200,675\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Workflow-Trigger-recaptcha-token\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?fit=1024%2C576&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?resize=1200%2C675&#038;ssl=1\" alt=\"\" class=\"wp-image-138558\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?w=1200&amp;ssl=1 1200w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/Workflow-Trigger-recaptcha-token.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-medium is-style-default q-box\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"375\" height=\"315\" data-attachment-id=\"138588\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/climber-webinvoice-file-upload\/attachment\/google-recaptcha-token-verify-config-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?fit=1165%2C979&amp;ssl=1\" data-orig-size=\"1165,979\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"google-recaptcha-token-verify-config-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?fit=750%2C630&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en-375x315.png?resize=375%2C315&#038;ssl=1\" alt=\"\" class=\"wp-image-138588\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?resize=375%2C315&amp;ssl=1 375w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?resize=750%2C630&amp;ssl=1 750w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?resize=768%2C645&amp;ssl=1 768w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-config-en.png?w=1165&amp;ssl=1 1165w\" sizes=\"auto, (max-width: 375px) 100vw, 375px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-book\"><\/i> Appendix<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Registration is required to use reCAPTCHA. (to get two types of keys)\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.google.com\/recaptcha\/admin\/\" rel=\"nofollow\">https:\/\/www.google.com\/recaptcha\/admin\/<\/a>\n<ul class=\"wp-block-list\">\n<li>reCAPTCHA type: <code>reCAPTCHA v3<\/code><\/li>\n\n\n\n<li>Site Key: (for Token generation)<\/li>\n\n\n\n<li>Secret Key: (for Token verification)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>To place this &#8220;Add-on Automated Step&#8221; on the design screen of the workflow diagram\n<ul class=\"wp-block-list\">\n<li>Import Addon-XML (definition file of this automated step) to Workflow App in advance.<\/li>\n\n\n\n<li>The system admins can also make it available in all Workflow Apps. (App-shared Add-on)<\/li>\n\n\n\n<li>Manual M415: Adding an Auto-Step to be Used in a Business Process Definition\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247792-M415\" rel=\"nofollow\">https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360002247792-M415<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>To activate the Workflow App including this &#8220;Add-on automated Step&#8221;, &#8220;HTTP Authorization Setting&#8221; is required.\n<ul class=\"wp-block-list\">\n<li>Set the &#8220;Secret Key&#8221; obtained by reCAPTCHA in advance as an API communication token. &#8220;Token Fixed Value&#8221;<\/li>\n\n\n\n<li>(&#8220;OAuth2 authorization&#8221; and &#8220;Basic authentication&#8221; are not used)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-balance-scale\"><\/i> See also<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/recaptcha-token.gif?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"640\" height=\"360\" data-attachment-id=\"138592\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/climber-webinvoice-file-upload\/attachment\/recaptcha-token-2\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/recaptcha-token.gif?fit=640%2C360&amp;ssl=1\" data-orig-size=\"640,360\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"recaptcha-token\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/recaptcha-token.gif?fit=640%2C360&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/recaptcha-token.gif?resize=640%2C360&#038;ssl=1\" alt=\"\" class=\"wp-image-138592\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-questetra-support wp-block-embed-questetra-support\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"CBGSCRCjZx\"><a href=\"http:\/\/support.questetra.com\/en\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/\">Send Inquiry with reCAPTCHA token<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Send Inquiry with reCAPTCHA token&#8221; &#8212; Questetra Support\" src=\"http:\/\/support.questetra.com\/tips\/workflow-trigger-code-202211\/send-inquiry-with-recaptcha-token\/embed\/#?secret=cj4Ld8P3eo#?secret=CBGSCRCjZx\" data-secret=\"CBGSCRCjZx\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Verifies the reCAPTCHA token (reCAPTCHA user response token). Validation boolean (true: human) and\/or validation score (1.0: human) are output. The token is valid for two minutes, and can only be verified once.<\/p>\n","protected":false},"author":2,"featured_media":138584,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[168],"tags":[366,378],"class_list":["post-138596","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-addons","tag-httpclient","tag-json-parse"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&ssl=1","uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-en.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"IMAMURA, Genichi","author_link":"https:\/\/support.questetra.com\/en\/author\/imamuragenichi\/"},"uagb_comment_info":0,"uagb_excerpt":"Verifies the reCAPTCHA token (reCAPTCHA user response token). Validation boolean (true: human) and\/or validation score (1.0: human) are output. The token is valid for two minutes, and can only be verified once.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-A3q","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":138604,"url":"https:\/\/support.questetra.com\/ja\/addons\/google-recaptcha-token-verify-2022\/","url_meta":{"origin":138596,"position":0},"title":"Google reCAPTCHA #\u30c8\u30fc\u30af\u30f3: \u691c\u8a3c","author":"IMAMURA, Genichi","date":"2022-11-10","format":false,"excerpt":"reCAPTCHA\u30c8\u30fc\u30af\u30f3\uff08reCAPTCHA user response token\uff09\u3092\u691c\u8a3c\u3057\u307e\u3059\u3002\u4eba\u9593\u30ed\u30dc\u30c3\u30c8\u691c\u8a3c\u306e\u771f\u507d\u5024\uff08true: human\uff09\u3060\u3051\u3067\u306a\u304f\u3001\u691c\u8a3c\u30b9\u30b3\u30a2\uff081.0: human\uff09\u3082\u53d6\u5f97\u3067\u304d\u307e\u3059\u3002\u306a\u304a\u30c8\u30fc\u30af\u30f3\u306e\u6709\u52b9\u671f\u9650\u306f2\u5206\u9593\u3067\u3001\u691c\u8a3c\u3067\u304d\u308b\u306e\u306f\u4e00\u5ea6\u3060\u3051\u3067\u3059\u3002","rel":"","context":"In &quot;\u30a2\u30c9\u30aa\u30f3&quot;","block_context":{"text":"\u30a2\u30c9\u30aa\u30f3","link":"https:\/\/support.questetra.com\/ja\/category\/addons\/"},"img":{"alt_text":"Google reCAPTCHA: \u30c8\u30fc\u30af\u30f3, \u691c\u8a3c","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-ja.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-ja.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-ja.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-ja.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2022\/11\/google-recaptcha-token-verify-capture-ja.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67394,"url":"https:\/\/support.questetra.com\/en\/addons\/box-fileupdate\/","url_meta":{"origin":138596,"position":1},"title":"Box File Upload (Password \/ Expiration)","author":"Hirotaka NISHI","date":"2017-10-10","format":false,"excerpt":"Uploads a file specifying the folder of Box, obtains the URL for publication and stores it in String type Data Item. Since you can set download password and download expiration date, it can be used for file sharing etc.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/10\/box-upload-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/10\/box-upload-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/10\/box-upload-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/10\/box-upload-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/10\/box-upload-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67502,"url":"https:\/\/support.questetra.com\/en\/addons\/questetra-membership-add\/","url_meta":{"origin":138596,"position":2},"title":"Questetra Org Membership Add","author":"Hirotaka NISHI","date":"2021-02-09","format":false,"excerpt":"Adds a member to a Questetra \u201cOrganization\u201d and stores the communication log in a String-type Data Item","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-add-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-add-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-add-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-add-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-add-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67508,"url":"https:\/\/support.questetra.com\/en\/addons\/questetra-membership-delete\/","url_meta":{"origin":138596,"position":3},"title":"Questetra Org Membership Delete","author":"Hirotaka NISHI","date":"2021-02-09","format":false,"excerpt":"Deletes a member from Questetra\u2019s \u201cOrganization\u201d and stores the communication log in a String type Data Item","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-org-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67514,"url":"https:\/\/support.questetra.com\/en\/addons\/questetra-rolemembership-add\/","url_meta":{"origin":138596,"position":4},"title":"Questetra Role Membership Add","author":"Hirotaka NISHI","date":"2021-02-09","format":false,"excerpt":"Adds a member to a Questetra \"Role\" and stores the communication log in a String-type Data Item","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-add-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-add-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-add-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-add-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-add-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67521,"url":"https:\/\/support.questetra.com\/en\/addons\/questetra-rolemembership-delete\/","url_meta":{"origin":138596,"position":5},"title":"Questetra Role Membership Delete","author":"Hirotaka NISHI","date":"2021-02-09","format":false,"excerpt":"Deletes a member from Questetra's \"Role\" and stores the communication log in a String type Data Item","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/11\/questetra-role-membership-delete-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/138596","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=138596"}],"version-history":[{"count":10,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/138596\/revisions"}],"predecessor-version":[{"id":183603,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/138596\/revisions\/183603"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/138584"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=138596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=138596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=138596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}