我有一个用 Ruby on Rails 完成的网站,它处理用户身份验证。现在,我在同一站点中的一个子文件夹下有一个 PHP 应用程序,该应用程序检索由 RoR 提供的指定用户角色的 JSON。
现在,当我尝试从 PHP 中检索 JSON 时,即使用户已登录,它也始终检索为“Guest”(我相信是因为未维护浏览器会话)。我用来检索 JSON 的代码是
$json_url = 'https://mysite.com.com/usertype';
$json_string = '[usertype]';
// Initializing curl
$ch = curl_init( $json_url );
// Configuring curl options
$options = array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => array('Content-type: application/json') ,
CURLOPT_POSTFIELDS => $json_string
);
// Setting curl options
curl_setopt_array( $ch, $options );
// Getting results
$result = curl_exec($ch); // Getting jSON result string
现在有人可以帮助我在哪里可以检索维护会话的 JSON 吗????