Tagged Questions
1
vote
0answers
24 views
Scribe (simple OAuth Java lib) and reverse auth token
I would like to use scribe for reverse auth token.
reverse auth token is for iPhone, however the first step of retrieving the request token I would like to do in the BE so I don't need to store the ...
0
votes
0answers
84 views
java.lang.IncompatibleClassChangeError: Implementing class in twitter application
I am new to the twitter 4j api (jar) which i am including in my code and want to check the sentiment analysis of tweets which i am getting through following code.But i am getting the error ...
1
vote
1answer
205 views
Android: Twitter4J Exception (Received Authentication Challenge Is Null)
I'm using Twitter4j library to authorize user with OAuth for my application on Android. But I'm facing this exception when I try to get OAuth request token. I know there are bunch of topics about this ...
0
votes
0answers
35 views
oauth.googlecode.com library doesn't seem to add OAuth 'Authorization' HTTP header to app authorization request
I am trying to write an OAuth client to post statuses to Twitter, using the OAuth Core 1.0 library, using its DesktopClient Twitter example, with a few modifications. Here is my code:
public class ...
1
vote
2answers
176 views
Twitter OAuth getRequestToken Failing
Today, my Twitter OAuth framework started failing, any ideas what the below means? This occurs when I attempt to get a request token using "http://twitter.com/oauth/request_token"...any ideas?
...
0
votes
1answer
90 views
Twitter integration in android app, error, nullpointer exception
This is my code for twitter , when clicked on twitter button
private final Handler mTwitterHandler = new Handler();
final Runnable mUpdateTwitterNotification = new Runnable() {
public void ...
0
votes
1answer
220 views
Get json user_timeline api twitter 1.1
I'm making an app for android that one of its features is a list of the tweets, the tweets I read a json alert that is requested by the twitter api, I'm using version 1.0 of the api, but is limited to ...
0
votes
0answers
46 views
play-authenticate accesstoken twitter
I am using play-authenticate to login a user with Twitter Oauth2. Now I want to get the Access Token so I can use some Twitter APIs.
Is it so obvious that I am missing how to do it?
I can get a User ...
0
votes
1answer
116 views
Twitter OAuth callback does not seem to work in Android
I've been trying all day to connect my app to android but I'm having no luck. I've been searching for hours but all the resources I'm finding are either incomplete or outdated. I've got this so far:
...
0
votes
1answer
43 views
Missing access tokens
This is the code i have currently, but I am unable to get the access tokens from my callback, any tips or hints will be appreciated.
@Override
protected void onCreate(Bundle ...
1
vote
2answers
684 views
Simplest Java example retrieving user_timeline with twitter API version 1.1
I was looking for a simple Java example using the Twitter 1.1 API and couldn't find one. Using the PHP sample posted here: simplest php example retrieving user_timeline with twitter API version 1.1 ...
1
vote
0answers
79 views
How to sign correctly a twitter request?Always get 401 Error Unauthorize
I am trying to get the request_token to sign in with twitter in an app, but I always get 401 Error. I have created my app in dev.twitter and I have the consumer key, secret and the callback.
This is ...
1
vote
1answer
433 views
twitter4j no auhtentication challenges found
Been trying to use twitter4j to post a tweet for couple days now without luck, what i want to do is for a person to post their new top score on their timeline from the app at the end of a round. Here ...
0
votes
0answers
52 views
Spring Social - undo already made retweet
Is it possible to undo retweet that you have just made? Using twitter interface it is possible.How can we do it in spring social?
0
votes
1answer
42 views
Twitter services automatization
Is it possible to simulate user behaviour on some twitter service that use oauth autorization(you have to enter your twiter credentials and allow to application access to it)?
For example, I have ...
1
vote
1answer
255 views
Failed to get HmacSHA1 “Message Authentication Code” (MAC) while trying to login in Twitter
In my project I am trying to integrate twitter using twitter4j.I tried sample code to login in office and I could post tweet successfully using that,but coming back to home I am facing bizarre problem ...
0
votes
1answer
132 views
twitter4j logins using different accounts
I am totally confused over the twitter4j API and I think I could really use your help.
I am trying to build a desktop twitter client in java using the twitter4j API but somehow I am forced to used ...
0
votes
2answers
443 views
Twitter Oauth Failed due to signature and token
I am trying to crate a application to authenticate from twitter but am getting the following error
:
Failed to validate oauth signature and token
Here is my code for app:
public class TwitCons {
...
1
vote
1answer
347 views
Email of Twitter User in Twitter4j
Can twitter4j get the email of twitter users authorizing an application/web site.
I was able to get the screen name as below:
User user = twitter.showUser(id);
String screenName = ...
2
votes
2answers
1k views
Using Scribe library for Oauth in Twitter with callback url
I am implementing twitter in my application using scribe.
After the user authenticate my app and is redirected to new url,
I got the oauth_token and oauth_verifier but could not figure out how to ...
2
votes
1answer
652 views
Signing in via Twitter OAuth doesn't remember authorization
I am writing a web application and have just implemented that a user can sign in via Twitter, using spring-social-(core/twitter).
However, Twitter behaves strangely. After the initial ...
2
votes
1answer
436 views
Using Twitter for registration and authentication from Java web app
I want to allow users to sign up and login to my Java web app using their Twitter account. The only information I need from their Twitter account is their name (or Twitter username if a name has not ...
2
votes
1answer
393 views
Twitter4j getOAuthRequestToken() Method Raises an ILLEGALSTATEEXCEPTION
I'm new to twitter4j and i just went through the following tutorial
http://www.java-tutorial.ch/framework/twitter-with-java-tutorial
After this i made some changes to that code according to my ...
2
votes
1answer
586 views
Doing oauth with Scribe for GWT
I'm trying to implement "Twitter" login for my web application. I use scribe to simplify things a bit.
My implementation relies of GWT RPC mechanism to get the Authorization url back to the client ...
2
votes
2answers
533 views
Is there any Blackberry Twitter SDK[Java] which takes care of OAuth
I am developing a small blackberry app which aggregates all celebrity tweets.... For now i am successfully able get all tweets by pinging the public twitter timeline API by passing the username, for ...
0
votes
1answer
477 views
In HttpSession session = request.getSession(); Where is the “request” object defined?
Using twitter4j and java, I am trying to use the following code to connect to Twitter. In my java class I have the following code.
Twitter twitter = new Twitter();
...
0
votes
1answer
701 views
Check if Twitter, Facebook, LinkedIn username(email) already exists
In my website I want to check if emailId the user types in is associated with any of Twitter/Facebook/LinkedIn.
Searching on got me in touch with this link. I found accepted answer would help me for ...
1
vote
1answer
4k views
sending JSON object using POST Methods
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent in=getIntent();
Uri uri=in.getData();
// ...
3
votes
2answers
311 views
Getting error 401 trying to connect to Twitter with play.libs.OAuth
I am using Play Framework and play.libs.OAuth, trying to connect to Twitter using the following code:
public static void twitterConnect()
{
Response response;
ServiceInfo twitterServiceInfo = ...
0
votes
2answers
322 views
DirectMessage authentication in Twitter4j API
I am working with a twitter client project which is using the Twitter4j API. My program is able to read tweets from the timeline, see followers and follower list, but whenever I want to access ...
1
vote
0answers
143 views
Twitter Authenticating without prompting to enter the 7-digit authentication code - BEGINNER
I am using Tweet4j to create a simple twitter application. When i run the sample code in Tweet4j i get a prompt to enter the 7 digit authentication code. I have seen some applications where the user ...
0
votes
4answers
838 views
Java based oAuth API to connect to Twitter
I need to use oAuth in order to login to my website (with a Twitter account). The backend of the website will be created using Java and the front end will be created using JSP/JSF. Is there any Java ...
0
votes
2answers
393 views
Twitter4J Only Authenticates With Me
I've been building a project using Twitter4J, the problem is that don't matter where I try to run this code it always use my Twitter account to authenticate and worst: It doesn't authenticate. When I ...
0
votes
1answer
61 views
Which web-resource supports OAuth 1.0 signing using PLAINTEXT (not HMAC_SHA1)?
I'm writing (or better to say extending) one existing library to support all kinds of signature, but I would love to test it with some existing service, which uses OAuth 1.0. Currently I'm working on ...
1
vote
1answer
630 views
Facebook / Twitter login integration into JASIG CAS
Has anyone had any success integrating the Spring Social framework ( http://www.springsource.org/spring-social ) into the JASIG CAS single sign on solution ( http://www.jasig.org/cas )?
I am trying ...
1
vote
1answer
224 views
Authenticating users to a web application via twitter
Hello I am building a app and i am novice to api's and all. I want provide authenticate my users to access my web app via twitter am using servlets and mysql at the back end and jquery and javascript.
...
2
votes
1answer
392 views
Running web application on local host
I wrote a web-application which is using java library SOCIAL AUTH for oauth .
For this i need to generate a secret with oauth provider like google,twitter .
while generating the key i gave the ...
1
vote
2answers
166 views
Cannot iterate through array
UserType statuses = twitter.getFriendsStatuses(UserType.class, null, null);
for( UserType users : statuses )
{
out.println("<p>"+users.getName()+"</p>");
}
I get an error "Foreach ...
1
vote
3answers
1k views
Error 401 when trying to update status with twitter4j
I am trying to update status on twitter using twitter4j. Everything works fine on localhost, but when I try to do it on server I get authorization error:
401:Authentication credentials were ...
1
vote
0answers
2k views
Connecting to Twitter streaming API with tracks with spaces using Apache HttpClient and signpost for Oauth?
Below is some code that tries to connect to Twitter using tracks with a space ("you will"). It uses Apache HttpClient and signpost oauth in more or less the manner tweetstream4j does. I use
...

