【备忘】狂问接入总结

接入前提

需要到官方商城购买UNI助理训练大脑,拿到api_key和app_id。(费用几十张,一般公司才会需要)

接入步骤

  1. 新建一个项目
  2. 先获取用户token
  3. 再用token进行提问
  4. 拿到回答结果(保存或输出,看你需求)

部分参考代码


    //获取token
    function gettoken(){
        $url = $this->host.'/kw/user/apiemploys/getusertoken';
        $res = Curl::curl_post($url,[
            'api_key'=>$this->api_key,
        ]);
        $res = json_decode($res['data'], true);
        session('kw_user_token',$res['data']['token']);
        return view();
    }
    //提问
    function que(){
        set_time_limit(30);
        if(request()->isPost()){
            $message = input('message');
            $param = [
                "message" => $message,
                "app_id" => $this->app_id,
            ];
            $url = $this->host.'/kw/user/app/send';
            $header = ["UserToken: ".session('kw_user_token'),"Content-Type:application/json",'Accept: application/json'];
            $result = $this->curlRequest($url,'POST',json_encode($param),$header);
            return json(Tools::set_ok('ok',explode('data:',$result)));
        }
        return view();
    }


    /**
     * 统一请求 GEt请求
     * @param String $url 接口地址
     */
    public function curlRequest($url, $method = 'GET',$data=null,$header=array(),$call_back=null)
    {
        set_time_limit(30);
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        if($header){
            curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
        }
        if($method = 'POST'){
            if($data) curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        }
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        if($call_back){
            curl_setopt($ch, CURLOPT_WRITEFUNCTION, $call_back);
        }
        $result = curl_exec($ch);
        if (curl_errno($ch)) {
            return [
                'status' => 'error',
                'message' => 'curl 错误信息: ' . curl_error($ch)
            ];
        }
        curl_close($ch);
        return $result;
    }

结语:功能不难,熟悉熟悉就可以搞了。

END

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SDL大华

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值