Ejemplo n.º 1
0
        /// <summary>
        /// Returns the relationships of the authenticating user to the comma-separated list of up to 100 screen_names or user_ids provided.
        /// </summary>
        /// <param name="oAuth"></param>
        /// <returns></returns>
        public JArray GetFriendships_Lookup(oAuthTwitter oAuth)
        {
            Friendship objFriend = new Friendship();
            JArray     jobj      = new JArray();

            jobj = objFriend.Get_Friendships_Lookup(oAuth);
            return(jobj);
        }