PHP中的curl复制命令

发布于 2024-12-08 01:46:23 字数 597 浏览 0 评论 0原文

我正在尝试

curl -c cookie_jar -H "Content-Type: application/json" -d '{"username" : "admin", "password" : "admin"}' http://jira:8080/rest/auth/latest/session

用 PHP 进行复制,但似乎无法让它工作。

我有

curl_setopt($curl,CURLOPT_URL, $loginUrl );
curl_setopt($curl,CURLOPT_POST, true );
curl_setopt($curl,CURLOPT_POSTFIELDS, '{"username" : "admin", "password" : "admin"}');
curl_setopt($curl,CURLOPT_COOKIEJAR, '/tmp/cookiejar' );
curl_setopt($curl, CURLOPT_HTTPHEADERS,array('Content-Type: application/json')); 
curl_exec( $curl );

什么帮助吗?

I am trying to copy

curl -c cookie_jar -H "Content-Type: application/json" -d '{"username" : "admin", "password" : "admin"}' http://jira:8080/rest/auth/latest/session

in PHP but I cannot seem to get it working.

I have

curl_setopt($curl,CURLOPT_URL, $loginUrl );
curl_setopt($curl,CURLOPT_POST, true );
curl_setopt($curl,CURLOPT_POSTFIELDS, '{"username" : "admin", "password" : "admin"}');
curl_setopt($curl,CURLOPT_COOKIEJAR, '/tmp/cookiejar' );
curl_setopt($curl, CURLOPT_HTTPHEADERS,array('Content-Type: application/json')); 
curl_exec( $curl );

Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望笑 2024-12-15 01:46:23

实际上,您实际上需要 CURLOPT_COOKIEFILE 选项。 COOKIEJAR 类型向其中写入新的 cookie。 COOKIEFILE 用于将现有的 cookie 加载到 CURL 中。您现在的 PHP 等效项不发送任何 cookie - 它只是记录它们。添加这个,你应该可以开始了:

curl_setopt($curl,CURLOPT_COOKIEFILE, '/tmp/cookiejar' );
                                ^^^^---the big difference.

You actually need the CURLOPT_COOKIEFILE option, actually. COOKIEJAR species where to write new cookies to. COOKIEFILE is for loading existing cookies into CURL. Your PHP equivalent right now is not sending any cookies - it's only recording them. Add this, and you should be good to go:

curl_setopt($curl,CURLOPT_COOKIEFILE, '/tmp/cookiejar' );
                                ^^^^---the big difference.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文