问题标签 [linq-to-twitter]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
564 浏览

c# - Linq2Twitter - 401 : bad authentication data

I have been working with Linq2Twitter (v. 2), using the Search API and I wanted to switch to the Stream API. I updated to v. 3 but since then I don't manage to authenticate anymore. I don't think the Stream API or the version could be the problem, because I've tried to go back to the previous version, previous authentication methods, and it doesn't work anymore either. I get a 401 : bad authentication data.

So, here is my current code :

Of course, I checked the credentials several times, printed them out and all. I tried with ApplicationOnlyAuthorizer, v.2, v.3 as well, it doesn't change anything. What scares me the most is that what used to work (v2 + ApplicationOnly + Search API) doesn't work either.

Through my research I've heard of a problem caused by unsynchronized timestamps, or something like that. But I don't understand how I can change that. The program is not on a server, it's locally stored.

Thank you for reading.

0 投票
1 回答
179 浏览

c# - 获取关注者时没有得到任何响应或错误 Linq To Twitter

我正在尝试使用 Linq To Twitter 最新版本 3.0.2 获取关注者。但它没有返回任何响应,也没有抛出任何错误。请建议

“GetTwitterFollowers”方法定义为:

0 投票
1 回答
258 浏览

linq-to-twitter - Linq2Twitter 不返回结果

在使用 Linq2Twitter v3.0.2 时遇到一些问题。在我调用 SingleOrDefault 的行之后,它无限期地挂起。如果您需要更多信息,请告诉我。在此先感谢您的帮助。

0 投票
1 回答
1262 浏览

c# - 使用 Linq To Twitter 获取所有关注者

我正在尝试使用以下代码片段获取所有关注者列表。每个电话都会获得 200 个关注者,所以我在循环中结束以获得所有关注者。用户有 23.1K 关注者,但当关注者达到 2800 时,我收到“速率限制”超出错误。我发现 twitter 允许每个用户 15 个请求,有什么方法可以修复以下代码以获取所有关注者?

0 投票
1 回答
46 浏览

c# - How to Get followers Ids who don't make their tweets private

I want to get all followers ids who don't make their tweets private. What modification needs in the query

0 投票
0 回答
163 浏览

c# - 如何在列表 Linq 中添加成员到 Twitter

我正在尝试使用 Linq To Twitter API 在列表中添加成员。根据文档,我可以为每个请求添加 100 个成员,最多可以添加 5000 个成员。https://dev.twitter.com/docs/api/1.1/post/lists/members/create_all

有了这个,我写了一个小函数

以上应该可以工作,但我收到两个不同的错误。有时,我收到一条错误消息

有时,它会引发错误

我无法弄清楚原因..我需要你的建议

0 投票
1 回答
4265 浏览

c# - 如何在异步方法中管理互斥锁

我已将旧的 HttpHandler (.ashx) TwitterFeed 代码移植到 WebAPI 应用程序。代码的核心使用了优秀的 Linq2Twitter 包 ( https://linqtotwitter.codeplex.com/ )。移植的一部分涉及将此组件从版本 2 升级到版本 3,它现在提供了许多异步方法调用——这对我来说是新的。这是基本的控制器:

这很好用,但以前,我缓存了结果以避免“过度调用”Twitter API。正是在这里,我遇到了一个问题(更多是因为我对异步协议缺乏了解,而不是我怀疑的其他任何事情)。

总而言之,我要做的是首先检查缓存,如果数据不存在,则重新水化缓存并将数据返回给调用者(网页)。这是我对代码的尝试

问题出现在发布 Mutex 的 finally 代码块中(尽管我担心 GetTweetData() 方法的整体模式和方法):

如果我注释掉该行,则代码可以正常工作,但是(我假设)我应该释放创建它的 Mutex。据我所知,这个问题与创建和释放互斥锁之间的线程变化有关。

由于我缺乏异步编码方面的一般知识,我不确定a)我使用的模式是否可行,b)如果可行,我如何解决问题。

任何建议将不胜感激。

0 投票
1 回答
250 浏览

twitter - 使用 LinqToTwitter 返回的日期时间不正确?

我正在LinqToTwitter使用TwitterContext.Status.

但是我注意到,CreatedAt为每条推文返回的属性值与我将twitter.com上显示的实际推文CreatedAt的表示形式进行比较时不同。

分钟部分显然是相同的,但是看起来用户的时区偏移量并未应用于返回的此值。因此,结果可能是 +8 小时的休息时间。

这是结果集应该预期的结果吗?还是只是一个错误?

如果我们必须应用偏移量,我将如何检索它以应用于所有返回的推文?

0 投票
1 回答
942 浏览

c# - linqtotwitter - 获取保存的凭据

我使用 linqtotwitter 库,在我的 win forms 应用程序中,我可以对 twitter 进行 api 调用,但是当我关闭我的应用程序并重新打开时,我需要再次重复输入 pin 码///

在 twitter 程序 tweetdesc 中,它只需要输入一次密码吗?我怎样才能在应用程序本身中做得很好?

我读:

授权后,保存与该用户关联的凭据。下次用户需要对您的应用执行操作时,获取保存的凭据并将所有 4 个凭据加载到授权方。当授权方拥有全部 4 个凭据时,不再需要执行授权过程,您可以在不授权的情况下执行查询

但是这是怎么做到的?

0 投票
1 回答
6272 浏览

c# - 如何使用 linqtotwitter V3

好吧,我最近升级到 V3,但它破坏了很多东西

我该如何解决这些问题?

1号 :

这不再起作用,没有像 Credentials 和 InMemoryCredentials 这样的定义

数字 2:不再定义 GetFileBytes

数字 3:没有定义 TweetWithMedia

数字 4:没有 UpdateStatus 的定义

数字 5:没有 CreateFavorite 的定义

而且我找不到 V3 的任何示例

它总是说twitterCtx,但你如何获得twitterCtx第一?