我正在尝试为cakephp中的登录创建一个REST Web服务,现在我想通过http post方法将用户ID和密码作为cakephp中的JSON发送。 谢谢
答案 0 :(得分:-1)
你可以通过cakephp中的Http帖子发送json
<?php
$data = array('Users'=>array('id'=>'1','username'=>'xyz','password'=>'pass','email'=>'xyz@xya.com','age'=>'28','gender'=>'male'));
$url = "http://localhost/appname/Controllername/functionname";
$content = json_encode($data);
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, 'data='.$content);
$json_response = curl_exec($curl);
echo $json_response;?>