Questions tagged [twitter-client]

Twitter Client refers to the application that is authorized to read and/or write by using the Twitter APIs.

Twitter Client refers to the application that is authorized to read and/or write by using the Twitter APIs. A Twitter Client can have different permissions, and sometimes needs user authentication in order to be able to do certain actions on their behalf.

11 questions
9
votes
4 answers

OAuth + Twitter on Android: Callback fails

My Android application uses Java OAuth library, found here for authorization on Twitter. I am able to get a request token, authorize the token and get an acknowlegement but when the browser tries the call back url to reconnect with my application,…
Samuh
  • 36,316
  • 26
  • 109
  • 116
2
votes
1 answer

Add element before scroll position, and not affect current scroll / view

I’m trying to achieve the behaviour – for example – the Twitter Mac client: I got a box I can scroll in (overflow Y, fixed height), and I got several blocks inside. I want to add a new block before all others, but make it invisible to the user: so…
Joan
  • 659
  • 2
  • 7
  • 20
2
votes
2 answers

Twitter: How can I form a set of related hashtags?

Now that I know I can no longer communicate with Twitter mashups out there, how can I create a set of related hashtags? For instance, how can I get all tags similar or related to yankees?
Legend
  • 113,822
  • 119
  • 272
  • 400
1
vote
5 answers

Android : Any open source Android twitter client application?

I want any easy open source android twitter client application. Thank You
Prince OfThief
  • 6,323
  • 14
  • 40
  • 53
1
vote
1 answer

how can I handle "error" in communication to twitter.com? (ruby + twitter gem)

I have nice piece of code that works. I tried to tweet the same text and I my script ended because /lib/ruby/gems/1.8/gems/twitter-0.9.4/lib/twitter.rb:87:in 'raise_errors': (403): Forbidden - Status is a duplicate. (Twitter::General) I know I…
Radek
  • 13,813
  • 52
  • 161
  • 255
1
vote
1 answer

how can I capture **http response** from twitter.com? ( ruby + twitter gem)

I opened a question how can I capture response from twitter.com? ( ruby + twitter gem) to know if my update was successful. It is working fine... But I would like to know how I can capture HTTP Response Codes and Errors inside my ruby code? oauth =…
Radek
  • 13,813
  • 52
  • 161
  • 255
1
vote
1 answer

Specific search on twitter using tweetsharp

TwitterService vice = new TwitterService(); var tweeting = vice.Search("#Ghaza", 100); List resultList = new List(tweeting.Statuses); foreach (var twt in resultList) …
user1850156
0
votes
0 answers

Twitter API on JS Web View - Create a Twitter Clients that tweets on behalf of users

I need to make a very simple Twitter Client in JavaScript (Web View - not Node) like https://hootsuite.com/dashboard#/publisher, that will send users to authenticate on twitter and then, be able to fetch their tweets (and the tweets of the people…
Shl
  • 3,130
  • 1
  • 17
  • 16
0
votes
1 answer

Twitter Android-FirebaseUI auth: How to post on user's behalf once I have the access Token and the access secret on Android App??are those enough?

I logged in successfully and got the twitter access token and the twitter access secret using firebase-ui-auth [https://github.com/firebase/FirebaseUI-Android/blob/master/auth/README.md][1]: @Override protected void onActivityResult(int…
John
  • 1,711
  • 2
  • 29
  • 42
0
votes
1 answer

Getting public tweets using C#

TwitterService service = new TwitterService(); service.AuthenticateWith("XXXXXX", "XXXXXXX"); // Geting Tweets On Specific Topic var twts = service.Search("#ghaza", 100); List resultList = new…
user1850156
0
votes
5 answers

Good little project to do when learning C# WPF

I want to write a little application for myself to learn C# and WPF. The typical hello world in 2009 (twitter client) seems boring. I would like to hear your stands should I do a twitter client? Any other starters I could play around with and get…
Thomaschaaf
  • 17,847
  • 32
  • 94
  • 128