post方式,header对接接口

利用https://app.netease.im/index#/网站接口,制作手机发送验证码

public function phone(){


        //发送到的目标手机号码 $telphone
        $telphone = $_GET['phone'];
        $appSecret = 'cbb*******3b6';
        $CurTime=time();
        $Nonce='100';
        $CheckSum=sha1($appSecret.$Nonce.$CurTime);
        $data=array(
                'mobile'=>$telphone
            );
        $data=http_build_query($data);

        $fields = array(

            'http'=>array(
                'method'=>'POST',
                'header'=>array(

                    'AppKey:1d57a7d7***********19f23c2f69',
                    "CurTime:$CurTime",
                    "Nonce:$Nonce",
                    "CheckSum:$CheckSum",
                    
                    'Content-Type:application/x-www-form-urlencoded;charset=utf-8',
                    ),
                'content'=>$data
                ),

            
            
               );


        $context=stream_context_create($fields);

        $url = "https://api.netease.im/sms/sendcode.action";
        $html=file_get_contents($url,'false',$context);

        echo $html;

}

你可能感兴趣的:(post方式,header对接接口)