gpt4 book ai didi

c# - Linq to Twitter 错误

转载 作者:行者123 更新时间:2023-11-30 17:18:28 26 4
gpt4 key购买 nike

我想检索用户的状态以将其显示在列表框中(在网络表单中)。这是我的代码:

var twitterCtx = new TwitterContext();

var publicTweets =
from tweet in twitterCtx.Status
where tweet.Type == StatusType.User && tweet.ScreenName == txtName.Text
select tweet.Text;

_status = publicTweets.ToList();

但它在最后一行崩溃并显示以下消息:输入字符串的格式不正确。

为什么?

我怎样才能正确地做到这一点?

亲切的,

风筝

最佳答案

我已经尝试了您的代码并且有效。尝试使用一些常量字符串准确指定 tweet.ScreenName:

tweet.ScreenName == "username"

要尝试的另一种变体是 tweet.ID == "username"

关于c# - Linq to Twitter 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5755924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com