接口调用 POST

Posted 逐日 - 森

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了接口调用 POST相关的知识,希望对你有一定的参考价值。

/**
* 接口调用 POST
* @return [type] [description]
*/
public function portPhone(Request $request)
{
  $phone = $request->input(‘phone‘);

  $random = rand(100000,999999);

  $randoms = session::put(‘random‘,$random);


  $url = ‘http://api.chanyoo.cn/utf8/interface/send_sms.aspx‘;

  $data = array(‘username‘=>‘张三‘,
    ‘password‘=>‘***********‘,
    ‘receiver‘=>$phone,
    ‘content‘=>‘您的手机号:‘.$phone.‘,绑定验证码:‘.$random.‘。一天内提交有效!【****】‘

  );

 

  $postdata = http_build_query($data);

  //请求头信息、请求参数、请求方式
  $opts = array(
    ‘http‘ =>
      array(
        ‘method‘ => ‘POST‘,
        ‘header‘ => ‘Content-type: application/x-www-form-urlencoded‘,
        ‘content‘ => $postdata
      )
    );

  $context = stream_context_create($opts);

  $result = file_get_contents($url, false, $context);

   return $result;

}

以上是关于接口调用 POST的主要内容,如果未能解决你的问题,请参考以下文章

python调用接口,python接收post请求接口(附完整代码)

Ajax调用第三方接口;ICP备案查询;PHP后台调用接口;Js调用第三方接口;Ajax+PHP接口开发;

Ajax调用第三方接口;ICP备案查询;PHP后台调用接口;Js调用第三方接口;Ajax+PHP接口开发;

Ajax调用第三方接口;ICP备案查询;PHP后台调用接口;Js调用第三方接口;Ajax+PHP接口开发;

Python如何写get接口或者post接口,提供给别人调用

HttpClientUtil工具类post接口调用方式