Linq2twitter asp.net c#无法正常工作

时间:2015-12-08 12:43:23

标签: c# asp.net twitter linq-to-twitter

嘿伙计们,我按照这里的教程进行学校项目,https://www.dougv.com/2015/08/posting-status-updates-to-twitter-via-linqtotwitter-part-2-plain-text-tweets/

但是当我使用谷歌浏览器运行它时,没有任何东西出现,它只是卡在http://localhost:2860/linq2twitter.aspx这是一个空白页面,我已经检查了我的推文,但推文还没有被制作出来..来自我尝试过的另一个样本我认为这是假设要将我发送到一个身份验证页面,这需要我登录和填写..任何帮助表示赞赏。这是我的代码:

namespace WebApplication3
{
public partial class linq2twitter : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    class Program
    {
        static void Main()
        {
            Console.WriteLine("Program started.");

            try
            {
                var result = Task.Run(() => SendTweet());
                result.Wait();
                if(result == null) {
                Console.WriteLine("Tweet failed to process, but API did not report an error");
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }

            Console.WriteLine("Program completed.");
            Console.Read();
        }

        static async Task<Status> SendTweet()
        {
            var auth = new SingleUserAuthorizer
            {
                CredentialStore = new SingleUserInMemoryCredentialStore
                {
                    ConsumerKey = "<Twitter consumer key>",
                    ConsumerSecret = "<Twitter consumer secret>",
                    AccessToken = "<Twitter access token>",
                    AccessTokenSecret = "<Twitter access token secret>"
                }
            };

            var context = new TwitterContext(auth);

            var status = await context.TweetAsync(
            "Hello World! I am testing @dougvdotcom's #LinqToTwitter demo, at " +
            "https://www.dougv.com/2015/08/posting-status-updates-to-twitter-via-linqtotwitter-part-2-plain-text-tweets"
            );

            return status;
        }
    }
}
}

1 个答案:

答案 0 :(得分:1)

在重新生成我的秘密和密钥后修复..并删除了代码中我的密钥的无意间隔栏。 THX