Пример #1
0
        /// <summary>
        /// Delete a moment that your app has written for the authenticated user.
        /// </summary>
        /// <param name="UserId"></param>
        /// <param name="access"></param>
        /// <returns></returns>
        public JArray RemoveMoment(string UserId, string access)
        {
            Moments objMoment = new Moments(_clientId, _clientSecret, _redirectUrl);

            try
            {
                objArr = objMoment.Remove_Moment(UserId, access);
            }
            catch (Exception Err)
            {
                Console.Write(Err.StackTrace);
            }
            return(objArr);
        }