当尝试从window live api导入联系人时,它只给我在outlook.com中创建的联系人,从yahoo导入到outlook.com的联系人,它不会在下面回复此请求。
string queryParm = String.Format("access_token={0}", HttpUtility.UrlEncode(accessToken));
string url = "https://apis.live.net/v5.0/me/contacts?" + queryParm;
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
request.Method = WebRequestMethods.Http.Get;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string tmp = reader.ReadToEnd();
Debug.WriteLine(tmp);
答案 0 :(得分:0)
我认为它不会导入您的雅虎联系人的原因是因为在outlook.com中它不是Outlook联系人,而是您的雅虎联系人的副本。
在Outlook.com中,它看起来像是在您的联系中,但它只是一个共享。 也许这是一个值得关注的地方!