Questions tagged [jtwitter]

JTwitter is a small library providing easy access to the Twitter API.

Sets and gets user status, manages network of friends, sends message to friends, maintains lists, etc. Includes work-arounds for rough-edges and issues in the Twitter API to make coding easier and more robust.

Downloads and more information here: http://www.winterwell.com/software/jtwitter.php

54 questions
1
vote
1 answer

jTwitter - Links aren't clickable

I have used jTwitter (jQuery plugin for Twitter) to retrieve and display tweets on my webpage. Everything is working except the links that are in tweets aren't clickable. I have tried different ways but I couldn't find a solution. Here's the source …
Switch
  • 14,783
  • 21
  • 69
  • 110
1
vote
1 answer

problem with getRetweeters with Jtwitter

my piece of code is: for(int i=0;i
matias
  • 59
  • 4
1
vote
2 answers

Android Jtwitter forgidden exception

Android I am using jTwitter Twitter my_twiter = new Twitter("my_user_name","my_pass"); my_twiter.setStatus("hello world"); line 2 throws winterwell.jtwitter.TwitterException$E403: Forbidden http://twitter.com/statuses/update.json…
d-man
  • 57,473
  • 85
  • 212
  • 296
1
vote
1 answer

JTwitter : getStatus()

I'm creating a desktop Twitter client in Java and I'm using JTwitter. I tested a few lines of code with this library, which seems good, but I'm stuck at one point. When running my app, Eclipse prints : Exception in thread "main" java.lang.Error:…
Antoine Auffray
  • 1,283
  • 1
  • 17
  • 33
1
vote
3 answers

Oauth and Jtwitter

I am trying to use Oauth with jTwitter.. and get an exception while creating the Oauth signpostclient String JTWITTER_OAUTH_KEY="GDdmIQH6jhtmLUypg82g"; String JTWITTER_OAUTH_SECRET="9zWH6qe0qG7Lc1telCn7FhUbLyVdjEaL3MO5uHxn8"; OAuthSignpostClient…
Jay
  • 4,347
  • 1
  • 17
  • 17
1
vote
4 answers

Re-tweets and replies with JTwitter

I have not used Twitter enough to become familiar with its terminology or the way it works, so please help me in understanding the problem I have at hand. I am getting last 20 status updates posted by some Twitter user via RSS feed, the feed XML is…
Samuh
  • 36,316
  • 26
  • 109
  • 116
1
vote
1 answer

jtwitter not posting to twitter , app crashing

I am not able to post to twitter using the jtwitter jar. I get the following error : 10-07 15:13:39.975: E/AndroidRuntime(2316): FATAL EXCEPTION: main 10-07 15:13:39.975: E/AndroidRuntime(2316): winterwell.jtwitter.TwitterException:…
misguided
  • 3,699
  • 21
  • 54
  • 96
0
votes
1 answer

Android: Can't post tweet using OAuth and twitter

I am trying to send tweets to twitter via my android app. The libraries I'm using are signpost core, signpost commonshttp, and jtwitter. My code in my main activity is as follows: public class MainActivity extends Activity implements…
user1255273
  • 319
  • 2
  • 8
0
votes
1 answer

Project failing upon jtwitter-yamba.jar inclusion

I am building a project from the "Learning Android" book. When I include the thirdparty jtwitter-yamba.jar file my project fails when building: And I have tried to remove it to actually verify its the sinner. Is there a workaround? I suspect theres…
JavaCake
  • 4,075
  • 14
  • 62
  • 125
0
votes
1 answer

winterwell.jtwitter.TwitterException when using setStatus() in Android

I just created a simple interface with two EditText fields to give Username and Password to log in with Twitter account. I have correctly added jtwitter.jar file in to my project. Then when I try to run the following code; twitter = new…
AnujAroshA
  • 4,623
  • 8
  • 56
  • 99
0
votes
2 answers

why am I getting old mentions in jtwitter?

I am using jtwitter to get the user's latest mentions (using the code below) but the earliest mention I'm getting is 20 days old. twitter.getMentions(); I am getting the timeline and DMs correctly. Is anyone saw that problem before and can help…
Royi
  • 745
  • 8
  • 22
0
votes
1 answer

JTwitter access token and access token secret

I'm writing the application which has Twitter integration (JTwitter + OAuthSignpost). I'm able to update a status within my own account by supplying consumerKey, consumerSecret, accessToken, and accessTokenSecret. But how can I update a status from…
lomza
  • 9,412
  • 15
  • 70
  • 85
0
votes
2 answers

problem with status in jtwitter

My code with user id: status = twitter.getStatus(userId); working correctly, but stores the last status. I want store a status that i choose, with this code: status = twitter.getStatus(userId); But not works for certain users and throws me this…
matias
  • 59
  • 4
0
votes
4 answers

what is this error in android?

what is this error in android ?? 04-20 20:49:56.827: ERROR/AndroidRuntime(826): FATAL EXCEPTION: AsyncTask #1 04-20 20:49:56.827: ERROR/AndroidRuntime(826): java.lang.RuntimeException: An error occured while executing doInBackground() 04-20…
Adham
  • 63,550
  • 98
  • 229
  • 344
0
votes
2 answers

jtwitter permission issue Android

I'm tryin to tweet a simple post from my Android application. I followed a (tutorial and the login works fine. Now when I try to tweet my Logcat says I don't have the rights to post something. I read something about OAuthProvider and follow a couple…
Acolfen
  • 25
  • 7