curl コードが次のような場合、リクエストで Python のコードはどのように表示されますか。
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_COOKIESESSION, 1);
curl_setopt($ch, CURLOPT_COOKIE, 'id='.$id);
$result = curl_exec($ch);
これは私には効かないので
id="j4156f9150ece727e38bbf982634ee"
cookie = {'id': id}
content = requests.post(url, cookies=cookie)
print(id)
print(cookie)
print(content.url)
print(content.cookies)
結果は次のとおりです。
['j4156f9150ece727e38bbf982634ee']
{'id': 'j4156f9150ece727e38bbf982634ee'}
http://example.com
<<class 'requests.cookies.RequestsCookieJar'>[]>
それはどういう意味ですか?