第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

codeigniter php 中的 MISSING-INPUT-RESPONSE

codeigniter php 中的 MISSING-INPUT-RESPONSE

PHP
慕桂英3389331 2023-04-21 17:14:21
我在 codeigniter 中為我的表單創(chuàng)建了 recaptcha,recaptcha 函數(shù)在我的控制器中如下所示:public function validate_captcha() {          $recaptcha = trim($this->input->post('g-recaptcha-response'));          $userIp= $this->input->ip_address();          $secret='6LcuEP4UAAAAAGa1zwXxGTV0r1fNHMZqnTGeN-c_';                    $secretdata = array(              'secret' => "$secret",              'response' => "$recaptcha",              'remoteip' =>"$userIp"          );          $verify = curl_init();          curl_setopt($verify, CURLOPT_URL, "https://www.google.com/recaptcha/api/siteverify");          curl_setopt($verify, CURLOPT_POST, true);          curl_setopt($verify, CURLOPT_POSTFIELDS, http_build_query($secretdata));          curl_setopt($verify, CURLOPT_SSL_VERIFYPEER, false);          curl_setopt($verify, CURLOPT_RETURNTRANSFER, true);          $response = curl_exec($verify);          $status= json_decode($response, true);                    if(empty($status['success'])){              return FALSE;          }else{              return TRUE;          }      }現(xiàn)在的問題是這給了我以下錯(cuò)誤:{“SUCCESS”:FALSE,“ERROR-CODES”:[“MISSING-INPUT-RESPONSE”]}任何人都可以告訴我我在代碼中做錯(cuò)了什么,在此先感謝
查看完整描述

1 回答

?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

我認(rèn)為方法應(yīng)該是 GET 而不是 POST。


請(qǐng)使用下面的代碼來驗(yàn)證谷歌驗(yàn)證碼。


<?php 


public function validate_captcha() {

  $recaptcha = trim($this->input->post('g-recaptcha-response'));

  $userIp= $this->input->ip_address();

  $secret='6LcuEP4UAAAAAGa1zwXxGTV0r1fNHMZqnTGeN-c_';


  $verifyResponse = file_get_contents('https://www.google.com/recaptcha/api/siteverify?secret='.$secret.'&response='.$recaptcha.'&remoteip='.$userIp);

  $responseData = json_decode($verifyResponse);

    if(!$responseData->success){

        echo "failed";

    }else{

        echo "success";

    }


}


查看完整回答
反對(duì) 回復(fù) 2023-04-21
  • 1 回答
  • 0 關(guān)注
  • 198 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)