第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 php curl 的 cookie 中設(shè)置 JSESSIONID?

如何在 php curl 的 cookie 中設(shè)置 JSESSIONID?

PHP
一只萌萌小番薯 2023-03-04 18:05:05
我正在嘗試將第 3 部分 API 集成到 PHP curl 中。它工作正常并且在我嘗試時(shí)得到了響應(yīng)postman。但它在我的 PHP CURL 代碼中不起作用。我發(fā)現(xiàn)郵遞員的標(biāo)頭中設(shè)置了 JSESSIONID。我不知道如何在 php curl 中創(chuàng)建 JSESSIONID 并在 cookie 中設(shè)置。有人知道嗎?PHP代碼$url = "http://website.com/Public/login/";$dataa["userNo"] = "username";$dataa["userPassword"] = "password";$data = json_encode($dataa);$ch = curl_init($url);$headers = array(        'Content-type: application/json',        "Cookie: JSESSIONID=2cba2d9d7dc5455b76t90f4ccac3; httpOnly"    );curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers);curl_setopt($ch,CURLOPT_POSTFIELDS,$data);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// Instruct cURL to store cookies in this file.curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');// Instruct cURL to read this file when asked about cookies.curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');$response1 = curl_exec($ch);curl_close($ch);$res = json_decode($response1,true);
查看完整描述

1 回答

?
ABOUTYOU

TA貢獻(xiàn)1812條經(jīng)驗(yàn) 獲得超5個(gè)贊

您正在訪問(wèn)的 URL 正在嘗試設(shè)置 cookie。


要使用 cURL 接受 cookie,您需要指定一個(gè)“cookie jar”,一個(gè) cURL 可以存儲(chǔ)它接收到的 cookie 的文件:


// Instruct cURL to store cookies it receives in this file.

curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');


// Instruct cURL to read this file when asked about cookies.

curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');

JSESSIONID聽(tīng)起來(lái)像“會(huì)話 ID”cookie,用于跟蹤會(huì)話或一系列請(qǐng)求的東西。會(huì)話 ID2cba2d9d7dc5455b76t90f4ccac3與您使用 Postman 啟動(dòng)的會(huì)話相關(guān)聯(lián),您需要將其從 PHP 請(qǐng)求中刪除。


查看完整回答
反對(duì) 回復(fù) 2023-03-04
  • 1 回答
  • 0 關(guān)注
  • 311 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)