Ejemplo n.º 1
0
        /// <summary>
        /// Returns a cursored collection of user IDs for every user following the specified user.
        /// </summary>
        /// <param name="oAuth"></param>
        /// <returns></returns>
        public JArray GetFollowers_Id_Url(oAuthTwitter oAuth)
        {
            Friendship objFriend = new Friendship();
            JArray     jobj      = new JArray();

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