doulan4371 2019-01-18 16:55
浏览 229
已采纳

在PHP中使用ReCaptcha v2实现

So I have been having trouble implementing Recaptcha v2

Here is my form code

<form action="upload.php" method="POST" enctype="multipart/form-data">
<div id="html_element"></div>
<input type="file" name="file" style="font-family:'PSR';">
<button type="submit" name="submit">Upload</button>
<div class="g-recaptcha" data-sitekey="key" data-theme="dark"></div>

And this is the recaptcha part of code (same file but tried splitting into 2 before)

$secret = 'the secret';
$response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=". $secret."&response=".$_POST['g-recaptcha-response']."&remoteip=".$_SERVER['REMOTE_ADDR']);

$googleobj = json_decode($response);
echo $googleobj;
$verified = $googleobj->success;

if($verified === true)
      {

Whatever I do $verified always returns false. The echo part was me trying to debug but that has given me another error followed by a HTTP error 500.

PHP Recoverable fatal error:  Object of class stdClass could not be converted to string

Vardump of $_POST['g-recaptcha-response'] returns

string(334) "03AF6jDqXmI34YXuv1jIkgqHFo7TcjWbOq4-LJ_aTBRyzDld5BytgSe4ck_dolLm3C9CUzxela7LWa7hYJeJfEBONPPsx3ol7Ch-7SY8I9WyAFEy-iiGqwxZBY41gCSw7dfT42doqg-FIxwZweLOsH5YEf8i-L2QgkAJEd_PrWc9m2Uf6ZNbTDqCNr3VFqF8_0I-gS0Rhj9Z5XXwQLC9LeNfSWhI0DkpYNgK-hO4nGfEsaZT0PMlAg9DbHh9CzKDUzPpguVxz1zw0FP8CgwyBd9sgzpR4LfAoPuduGj0Z0wVcqbQ-CTifFtH7kCJuNG6bCDEufYfntj-8L"

Sorry if this is very basic stuff but im new to PHP

  • 写回答

2条回答 默认 最新

  • dongxieting9623 2019-01-18 17:02
    关注

    You are trying to echo an stdObject.

    $googleobj = json_decode($response);
    echo $googleobj;
    

    This does not work, because $googleobj is not a string, it's an object. When using the echo command, PHP tries to convert whatever is being echo'd into a string, which it cannot do with an object.

    Instead, you could do:

    $googleobj = json_decode($response);
    print_r($googleobj);
    

    Or simply remove the echo line completely.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据