极验验证码报404错误

controller里面

public function captcha()
    {
        $captcha = new \Laravist\GeeCaptcha\GeeCaptcha(env('CAPTCHA_ID'), env('PRIVATE_KEY'));
        echo $captcha->GTServerIsNormal();
    }

login.blade.php

<div class="form-group{ $errors->has('captcha') ? ' has-error' : '' }">
     <label class="col-md-3 control-label">验证码:</label>

     <div id="captcha" class="col-md-6"></div>
         <script src="http://static.geetest.com/static/tools/gt.js"></script>
         <script>
             var handler = function (captchaObj) {
               // 将验证码加到id为captcha的元素里
                   captchaObj.appendTo("#captcha");
             };
             $.ajax({
               // 获取id,challenge,success(是否启用failback)
                 url: "/captcha?rand="+Math.round(Math.random()*100),
                 type: "get",
                 dataType: "json", // 使用jsonp格式
                 success: function (data) {
                  // 使用initGeetest接口
                  // 参数1:配置参数,与创建Geetest实例时接受的参数一致
                  // 参数2:回调,回调的第一个参数验证码对象,之后可以使用它做appendTo之类的事件
                        initGeetest({
                            gt: data.gt,
                            challenge: data.challenge,
                            product: "float", // 产品形式
                            offline: !data.success
                        }, handler);
                     }
                  });
          </script>
    </div>

如图!404错误

貌似代码没啥问题。这个可能是以下原因引起的:

  1. 你的api_key和private_key没设置对

  2. GeeTest抽风了

  3. 网络问题

你有在header部分引入这个不?

  <script src="http://api.geetest.com/get.php"></script>
JellyBool
修改的评论也不能少于六个字哦!
axhello
修改的评论也不能少于六个字哦!
JellyBool
修改的评论也不能少于六个字哦!