通过linkedin申请处理申请回复

时间:2011-07-31 11:51:20

标签: api linkedin

我正在尝试通过Apply with LinkedIn插件返回响应。我正在使用Zend Framework。我尝试过使用linkedIn

中的示例代码
    <?php
// access raw HTTP POST data
$post_body = file_get_contents('php://input');
$application = json_decode($post_body);

// confirm success by writing applicant name to the error log
error_log($application->person->firstName . " " . $application->person->lastName);

// now parse $application and insert data into a DB
// or perform another action
?>

将此粘贴​​在我的控制器中,然后是我的视图,但没有成功。

我的data-url是当前页面的网址... 任何人都可以告诉我这是假设要完成PHP或javascript(需要将响应放入数据库)。

感谢。

1 个答案:

答案 0 :(得分:0)

尝试替换

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

使用:

$post_body = $this->getRequest()->getRawBody(); 

其中$ this指的是当前请求。如果你免费得到这个,我不是肯定的......但是我希望你能从这里拿到这个。我不是ZF专家。