doulu4534 2017-05-02 12:04
浏览 58
已采纳

PHP可以存储Cookie并使用这些cookie发送curl请求吗?

We have 2 application run in 2 different server, let say SERVER_X (PHP) and SERVER_Y (NODE).

In SERVER_X index.php

$url = 'http://10.10.10.2/login';
$poststring = 'username=admin&password=password';
$ch = curl_init ($url);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile);
curl_setopt ($ch, CURLOPT_COOKIEFILE, $ckfile);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $poststring);
$output = curl_exec ($ch);
curl_close($ch);


$url = 'http://10.10.10.2/getdata';
$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_COOKIEFILE, $ckfile);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_POST, 1);
$output = curl_exec ($ch);
curl_close($ch);
echo json_decode($output);

enter image description here So what we want to achieve is by accessing SERVER_X/index.php, the CLIENT able to get the data from SERVER_Y where the authentication for SERVER_Y done in SERVER_X PHP code. Is this possible ?

  • 写回答

1条回答 默认 最新

  • dsavz66262 2017-05-16 07:47
    关注

    Manage to make it work with code below,

     define('_IP', '10.10.10.2');
    define('_USERNAME', $_GET['user']);
    define('_PASSWORD', $_GET['pass']);
    define('_ORCHESTRA_PORT', '11111');
    define('_NODE_PORT', '22222');
    
    $main_auth_url = 'http://' . _IP . ':' . _ORCHESTRA_PORT . '/v2/auth/login';
    $main_auth_credential = array("username" => _USERNAME, "password" => _PASSWORD);
    $main_auth_credential = json_encode($main_auth_credential);
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $main_auth_url);
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $main_auth_credential);
    curl_setopt($ch, CURLOPT_HEADER, TRUE);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
    curl_setopt($ch, CURLOPT_VERBOSE, true);
    
    $response = curl_exec($ch);
    curl_close($ch);
    
    $user_id = explode('set-cookie: userid=', $response);
    $user_id = explode('; Max-Age', $user_id[1]);
    $user_id = $user_id[0];
    
    $token = explode('set-cookie: token=', $response);
    $token = explode('; Max-Age', $token[1]);
    $token = $token[0];
    
    $connect_sid = explode('set-cookie: connect.sid=', $response);
    $connect_sid = explode('; Path=/', $connect_sid[1]);
    $connect_sid = $connect_sid[0];
    
    $node_user_id = urldecode($user_id);
    $node_user_id = explode('"', $node_user_id);
    $node_user_id = $node_user_id[1];
    
    $node_auth_url = 'http://' . _IP . ':' . _NODE_PORT . '/v2/auth/login';
    $node_auth_credential = array("username" => $node_user_id, "password" => $token);
    $node_auth_credential = json_encode($node_auth_credential);
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $node_auth_url);
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $node_auth_credential);
    curl_setopt($ch, CURLOPT_HEADER, TRUE);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
    
    $response = curl_exec($ch);
    $info = curl_getinfo($ch);
    curl_close($ch);
    
    $connect_sid = explode('set-cookie: connect.sid=', $response);
    $connect_sid = explode('; Path=/', $connect_sid[1]);
    $connect_sid = $connect_sid[0];
    
    $sub_url = 'http://' . _IP . ':' . _NODE_PORT . '/getdata';
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $sub_url);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array("Cookie: userid=" . $user_id . "; token=" . $token . "; connect.sid=" . $connect_sid));
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_VERBOSE, true);
    
    $response = curl_exec($ch);
    curl_close($ch);
    
    echo '<pre>';
    print_r($response);
    echo '</pre><hr>';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题
  • ¥50 C#编程中使用printDocument类实现文字排版打印问题