ユーザーの連絡先をインポートできました:
$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 は平文の電子メールを提供しません (一方向暗号化のように見えます)。
メールを同じ方法で暗号化して比較するにはどうすればよいですか? これを回避する他の作業はありますか?