Exemplo n.º 1
0
        /// <summary>
        /// ツイートを返信します
        /// </summary>
        /// <param name="Body">本文</param>
        public void PostTweet(string Body, string In_reply_to_status_id)
        {
            var pt = new PostTweet();

            try
            {
                pt.PostTweetTextOnly(Body, In_reply_to_status_id);
            }
            catch { throw; }
        }
Exemplo n.º 2
0
        /// <summary>
        /// ツイートを投稿します
        /// </summary>
        /// <param name="Body">本文</param>
        public void PostTweet(string Body)
        {
            var pt = new PostTweet();

            try
            {
                pt.PostTweetTextOnly(Body);
            }
            catch { throw; }
        }