使用$ auth.signup(用户)时无法获取请求有效负载

时间:2015-07-02 13:14:40

标签: php codeigniter codeigniter-restserver satellizer

我的卫星api注册有问题,在我的后端使用CodeIgniter调用方法$ auth.signup(user)我无法检索用户发送的值。

我尝试了一切

我的库REST for options for options

$this->options('name'); // this is null

link图书馆

我尝试使用此

手动获取有效负载

$request_body = file_get_contents('php://input');

$data = json_decode($request_body); //this is null too

我不知道可以取悦,帮助我!

谢谢大家!! 最好的问候。

1 个答案:

答案 0 :(得分:0)

我已修复,解决方案为here

总结一下,浏览器发送两个请求OPTIONS以检查服务器是否接受自定义标头,并在请求POST后发送数据。

谢谢你的时间!