代码之家  ›  专栏  ›  技术社区  ›  user20358

正在检查Facebook用户联机状态

  •  0
  • user20358  · 技术社区  · 15 年前

    我使用facebook api连接到facebook,并在c winforms应用程序中获取我的好友列表。

    FaceBookService1.ConnectToFacebook();
    FriendList.Friends = FaceBookService1.Friends.GetUserObjects();
    

    这两行代码为我提供了登录用户的好友列表。我无法找出这些用户中的哪些目前在线。我已经检查了整个facebook.schema.user类型,但没有结果。

    有什么线索吗?

    谢谢。

    1 回复  |  直到 11 年前
        1
  •  1
  •   Kyle Rosendo    15 年前

    你看过这个吗: Get Online Friends

    过帐代码供将来使用:

      public Collection<User> GetOnlineFriends()
      {
          Collection<string> onlineFriends = GetOnlineFriendIds();
          return GetUserInfo(StringHelper.ConvertToCommaSeparated(onlineFriends));
      }
    

       public Collection<string> GetOnlineFriendIds()
       {
           Collection<string> friendList = new Collection<string>();
           string xml = GetOnlineFriendsXML();
           if (!String.IsNullOrEmpty(xml))
           {
               XmlDocument xmlDocument = LoadXMLDocument(xml);
               XmlNodeList nodeList = xmlDocument.GetElementsByTagName("fql_query_response");
               if (nodeList != null && nodeList.Count > 0)
               {
                   XmlNodeList results = xmlDocument.GetElementsByTagName("user");
                   foreach (XmlNode node in results)
                   {
                       friendList.Add(XmlHelper.GetNodeText(node, "uid"));
                   }
               }
           }
               return friendList;
       }
    

       public string GetOnlineFriendsXML()
       {
           Dictionary<string, string> parameterList = new Dictionary<string, string>(3);
           parameterList.Add("method", "facebook.fql.query");
    
           if (!string.IsNullOrEmpty(_userId))
           {                
               parameterList.Add("query", 
                   String.Format(CultureInfo.InvariantCulture, "{0}{1}{2}",
                                  "SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=", _userId, ") AND 'active' IN online_presence"));
    
           }
           else
           {
               throw new FacebookException("User Id is required");
           }
           return ExecuteApiCallString(parameterList, true);
       }