我能够导入用户的联系人:
$url = 'https://apis.live.net/v5.0/me/contacts?access_token='.$accesstoken.'';
$xmlresponse = curl_file_get_contents($url);
$xml = json_decode($xmlresponse, true);
foreach($xml['data'] as $emails)
{
echo '<br><br>';
echo $emails['name'].' '.$emails['email_hashes'][0];
}
问题是我想找到用户在我的网络中可能拥有的连接。hotmail 不提供纯文本电子邮件(而且它看起来是一种加密方式)..
如何以相同的方式加密我的电子邮件以进行比较?还有其他解决方法吗?