Questions tagged [spring-social-twitter]

Spring Social Twitter is a module within the Spring Social family of projects that enables you to connect your Spring application with the Twitter REST API.

Spring Social Twitter is a module within the Spring Social family of projects that enables you to connect your Spring application with the Twitter REST API.

Features:

  • A service provider and connection factory for use with Spring Social's connection framework.
  • An API binding for Twitter's REST API.
  • Much more...

More Information:

Getting Started Guides:

Related Tags:

67 questions
1
vote
1 answer

SpringXD: ClassCastException of same class between modules in a stream

I have a custom Spring XD source module that uses Spring Social for Twitter and outputs Tweet objects. This is working just fine. I can log the output of the source and see the Tweet objects listed. I can change the output type of the source for…
loesak
  • 1,413
  • 2
  • 19
  • 33
1
vote
3 answers

Friends and Followers in Spring Social

I'm using spring-integration-twitter 4.1.6.RELEASE in my project. Using TwitterTemplate I was trying to get all the friends for the authenticated user. So im using this method for it , friendsList = twitterTemplate.friendOperations().getFriends();…
Neero
  • 226
  • 2
  • 7
  • 23
1
vote
1 answer

Spring Twitter Integration , Failed to send Status update. Detailed Error: 403:The request is understood, but it has been refused

I am following the Spring Twitter Integration example from Pro Spring Integration book by Mark Lui and Josh Long. But getting error saying Failed to send Status update. Detailed Error: 403:The request is understood, but it has been…
1
vote
0 answers

fabicon.ico Or unwanted strings like "6_S3" get appended after the callback url for facebook.twitter login

I have integrated spring social with my application for login with Facebook and Twitter. Sometime it is working fine and some time it is appending fabicon.ico or some unwanted string like 6_S3. Can anyone suggest what I am doing wrong? Consider my…
1
vote
0 answers

Twitter Post Status Characters Scrambled If Image Included

Posting the following message to twitter (this was a test for foreign characters): ?===)")+"45(&/*ç) sdlkfnaslfn k -..,$äöü¨;:_:;>>><<<>>°+°+"*ç http://www.bbc.co.uk via the API (v1.1), without an included image URL, produces: Which is the…
MarcF
  • 3,169
  • 2
  • 30
  • 57
1
vote
1 answer

Spring Social Twitter Authenticaion in asp.net

I'm designing a website using forms asp.net I would like this website to view tweets for a from a twitter account timeline using spring social twitter API the problem is when I i run the web page it show this error The Twitter REST API v1 is no…
Scarnet
  • 738
  • 2
  • 11
  • 36
0
votes
1 answer

Spring social Twitter Api

I am using spring social and the twitter api, Im able to get the connection working but cant find the way to retrieve the user's mail. Is there any way to do this?
IturPablo
  • 1,572
  • 2
  • 22
  • 35
0
votes
0 answers

Error resolving template [twitterConnect], template might not exist or might not be accessible by any of the configured Template Resolvers

Ι'm trying to implement ConnectController from Spring Social Twitter. Spring Social Facebook is working fine but when it comes to twitter I get this error error.org.thymeleaf.exceptions.TemplateInputException: Error resolving template…
0
votes
1 answer

Integrating spring social with native android app

I am developing an android app with Facebook, Twitter logins and custom posts with these providers. But their callback sequence causes instability in my app. I want to transfer login job. I am curious about how can I integrate spring social to my…
0
votes
1 answer

spring social twitter stop streaming operation

I have a little spring application that uses Spring social twitter to stream data from twitter's public API. The code is very simple. I have a configuration class that expose a bean of type twitter template. @Bean Twitter getTwitterTemplate() { …
Fanooos
  • 2,718
  • 5
  • 31
  • 55
0
votes
2 answers

Spring Boot Social Twitter Authentication fails

I have a project on Spring Boot, in which I need to implement authorization via Twitter. What could be simpler? - I asked myself, and then I got stuck for a few days. The problem is that the most of the libraries I've tried (listening for…
0
votes
1 answer

java.net.HttpRetryException: cannot retry due to server authentication, in streaming mode

I am trying to get access token and access token secret of a user after authorization. getting this exception when i click on Authorize App. below is the code in callback controller. I have configured callback url in the consumer application…
0
votes
1 answer

Spring does not allow to delete some logs (Mongo, Spring-Social-Twitter,...)

Hi everybody. After try a lot of solutions/testing, I come to ask for help. I've a Java Program, that use spring-social and mongoDB. However, it's polluted by Spring and Mongo logs : [main] INFO…
0
votes
1 answer

Specifying since_id w/o max_id for getUserTimeline in Spring Social Twitter

D ear community, according to Twitter's guidelines on working with timelines it's recommended an application's first request to collect a full timeline omits the max_id parameter (see…
oschlueter
  • 2,596
  • 1
  • 23
  • 46
0
votes
1 answer

Spring Social Twitter HTTP Status 405 - Request method 'POST' not supported

Friends I am using Spring Mvc 4.2.5, Spring Security 4.0.4 , Spring Social 1.1.2 to integrate with twitter api.everything is fine upto connectcontroller handling get /connect/twitter,/connect . but when i send post request from twitterConnect.jsp…