- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个新的应用程序并在 Twitter 上注册它以获取消费者 key 、消费者 key secret 、 token 和 token secret 。然后我添加了对 TweetSharp 的引用。接下来我使用了 https://github.com/danielcrenna/tweetsharp 中的代码它说“验证客户端应用程序(即桌面)”。
它总是打开的页面在标题栏中没有键。我注意到步骤 1 中的 oAuthRequestToken 有两个 token / token secret 属性,但都没有设置。所以我手动添加了行来设置这两个。我又试了一次。这次在浏览器中打开的 Url 看起来是完整的。
我所看到的只是“哇哦!此页面的请求 token 无效。它可能已被使用,或者因为太旧而过期。请返回将您发送到此处的站点或应用程序并尝试又一次;这可能只是一个错误。”
我已经尝试重新创建 token ,并发送 key 和 token 以防我不理解它。我完全迷路了。刚开始不会这么难!
有什么想法吗?
最佳答案
我不确定您的问题出在哪里,但我会尽力提供帮助。这是我测试并为我工作的示例。我从社区得到它。不要忘记将 key 放在 app.config 文件中。
TwitterClientInfo twitterClientInfo = new TwitterClientInfo();
twitterClientInfo.ConsumerKey = ConsumerKey; //Read ConsumerKey out of the app.config
twitterClientInfo.ConsumerSecret = ConsumerSecret; //Read the ConsumerSecret out the app.config
TwitterService twitterService = new TwitterService(twitterClientInfo);
//Now we need the Token and TokenSecret
//Firstly we need the RequestToken and the AuthorisationUrl
OAuthRequestToken requestToken = twitterService.GetRequestToken();
string authUrl = twitterService.GetAuthorizationUri(requestToken).ToString();
//authUrl is just a URL we can open IE and paste it in if we want
Process.Start(authUrl); //Launches a browser that'll go to the AuthUrl.
//Allow the App
//ask for the pin
//string pin = ...
OAuthAccessToken accessToken = twitterService.GetAccessToken(requestToken, pin);
string token = accessToken.Token; //Attach the Debugger and put a break point here
string tokenSecret = accessToken.TokenSecret; //And another Breakpoint here
twitterService.AuthenticateWith(AccessToken, AccessTokenSecret);
希望对您有所帮助。祝你好运。
关于c# - 如何使用 TweetSharp 验证 Twitter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15177827/
Error 11 The type or namespace name 'RestResponse' could not be found (are you missing a using direc
我正在尝试遵循 Pete Brown 的介绍性 WPF 教程,该教程利用 TweetSharp 库与 Twitter 进行交互。 我已经从 Codeplex ( http://tweetsharp.c
有谁知道如何使用 TweetSharp 获取某些帐户的关注者数量? 最佳答案 您可以从 TwitterUser 对象中获取好友和关注者计数。直接获取用户: var twitter = FluentT
我正在使用 TweetSharp 向用户发送推文(目前正在测试),但它不断返回错误的身份验证数据 {"errors":[{"code":215,"message":"Bad Authenticat
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
无法在官方 TS 文档、其他 Tweetsharp SO 帖子或挖掘库的类中找到它;所以我想我会问。您如何使用 Tweetsharp 检索特定用户的最新推文列表? 您可以假设我正在使用一个帐户进行身份
我们正在使用TweetSharp (TweetSharp 版本 = 2.3.1 和 Newtonsoft.Json 版本 = 5.0.6)用于在我们的 Web 应用程序中显示用户推文的 API。以下是
这是最基本的示例,它会抛出异常。 // Pass your credentials to the service TwitterService service = new TwitterService
如何使用 TweetSharp 获取直接消息? 我试过这个: var twitterApp = new TwitterService(OAuthConsumerKey, OAuthConsumerSe
我正在使用 tweetsharp 库来检索特定主题标签的推文 var service = new TwitterService(Consumer Key, Consumer Secret); se
当我调试下面的代码时,我在下面的问题上卡住了一段时间: TwitterService service = new TwitterService("_consumerkey", "_co
这里有人试过使用 TweetSharp 用图片发推文吗? 我尝试了以下方法: Dictionary imageDict = new Dictionary(); imageDict.Add(imageP
您好,我对 tweetsharp sdk 有疑问。我尝试用下面的代码阅读推文,有时我并不总是接受这个异常(exception):“算术运算导致溢出”。我搜索了但没有找到原因? TweetSharp.T
在 TweetSharp 1.0 中有 FluentTwitter,TweetSharp 2.0 似乎没有任何地方,它甚至似乎没有被弃用,而是完全删除,如果 TweetSharp 的这一部分在 2.0
我正在尝试让 TweetSharp 对特定区域内的推文执行搜索。不幸的是,这总是返回 0 个结果。 public IEnumerable Search(string terms) { Twitte
我找不到最近的答案。 据报道,Tweetsharp 在一些旧帖子中不支持来自 Twitter 用户流 api 的流。然而,github 显示了一个看起来支持流式传输的类。 https://github
我创建了一个新的应用程序并在 Twitter 上注册它以获取消费者 key 、消费者 key secret 、 token 和 token secret 。然后我添加了对 TweetSharp 的引用
我正在尝试在我的 asp.net mvc 3 应用程序中实现 tweetsharp,但我遇到了问题。 我使用以下设置创建了一个新的 Twitter 应用程序: 申请网址:http://127.0.0.
我是 TweetSharp 的初学者,我正在使用 TweetSharp 的 ListTweetsOnHomeTimeline() 方法,有时此方法工作正常,有时返回 null。 下面是我的代码 IEn
我是一名优秀的程序员,十分优秀!