繁体   English   中英

使用cURL php获取Outlook消息

[英]Getting outlook message using cURL php

我想使用cURL(php)连接到Outlook.com,并从收件箱中获取消息。

<?php
        $url = "https://login.live.com/login.srf?wa=wsignin1.0&ct=1369129355&rver=6.1.6206.0&sa=1&ntprob=-1&wp=MBI_SSL_SHARED&wreply=https:%2F%2Fmail.live.com%2F%3Fowa%3D1%26owasuffix%3Dowa%252f&id=64855&snsc=1&cbcxt=mail"; 
        $post_fields ="email=xxxx@outlook.com&pass=xxxx"; 

        $cookie_path = "\hotmail_login\cook";
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url); 
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
        curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_path); 
        curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_path); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
        $output = curl_exec ($ch); 
        echo $output; 
    ?>

有什么建议么? 提前致谢

要连接邮件服务器,您应该使用POP3或IMAP,为此没有必要使用curl。

http://php.net/manual/zh/function.imap-open.php

在这里,您有如何使用PHP与IMAP连接并获取消息的示例

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM