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
0
votes
0 answers

C# Spring Social Twitter - Posting Emoji's?

I am using Spring Social Twitter in a project at the moment and everything is going well. Status update's post and there's no issues. I'm not 100% sure if it's possible but does anybody know if you can use this API to post Emoji's to Twitter?
Phill Wiggins
  • 2,577
  • 4
  • 28
  • 33
0
votes
1 answer

Spring Social : Unable to create SocialAuthenticationFilter using xml configuration

I want to add spring social facebook (spring social 1.1.4 and spring social facebook 1.1.1) with spring security 4.0.3 using XML configuration, I'm unable to add SocialAuthenticationFilter :
0
votes
1 answer

Able to access my own facebook information but not my friend list information using Spring Social

I had implemented spring controller for fetching all the information about my friend list. The implementation are as follows: @RequestMapping(value = "/getFbContactList/{accessToken}", method = RequestMethod.GET,produces =…
0
votes
1 answer

Are the consumer/access tokens and secrets protected via TwitterTemplate?

I am planning on a simple standalone, non-webapp Twitter demo for the purpose of getting my hands wet with spring-social; there is no frontend. For simplicity, everything will be run off method main for the demo and the consumerKey, consumerSecret,…
0
votes
1 answer

Spring Social Twitter

I am new to Spring and trying to make a web application that reads the last 20 tweets of an user with getUserTimeline(screenName);. So far I made this Tutorial from Spring https://spring.io/guides/gs/accessing-twitter/ and changed the request so I…
julien
  • 624
  • 1
  • 8
  • 17
0
votes
1 answer

How to allow anonymous twitter connections in an MVC configuration

Using - spring-social 1.1.4 - spring-social-twitter 1.1.2 - spring-mvc-4.2 - on tomcat 7 Below is my tomcat config for my MVC Application including twitter set up and usersConnectionRepository. This is all working fine for the logged in MVC…
0
votes
1 answer

Spring Social Twitter stream returns HTTP 401 unauthorized

I try to make a stream connection to Twitter using spring-social-twitter, but when I try to make a request I've got 401 unauthorized. spring-social-twitter is trying to connect to https://stream.twitter.com/1.1/statuses/filter.json. When I debug it…
0
votes
2 answers

How to get providerUserId by providerId, accessToken and secret? (Spring Social)

In my application I can identify user by providerId and providerUserId. But initially, I have only following information: providerId, accessToken, secret. Thus, I need to acquire providerUserId by this information. I'm trying to use following…
0
votes
1 answer

Java -SpringSocial: Getting Twitter data between two dates

I am using spring social to get twitter data for particular tag say #spring. What I want to achieve is get all data between two dates/timestamp. eg. data between last fetch time and current time. The spring social API allows me to get data betweem…
Ankit Solanki
  • 670
  • 2
  • 9
  • 23
0
votes
1 answer

Spring Social java.io.NotSerializableException: org.springframework.social.security.SocialAuthenticationServiceRegistry

I'm trying to use Spring Social to Login via Twitter with Spring Security on Appengine and getting the following exception. This error appears after redirecting back from twitter with the URL…
0
votes
2 answers

In Spring Social Tweeter, how does JSON become a Tweet, and how does RestTemplate.getObject work?

everybody. In Spring Social Twitter we use RestTemplate.getObject() to retrieve and deserialize data from the REST endpoint. It does its job and it is very neat! But how does it do that? How can the JSON (source 1) be translated into the .JAVA…
hudsonmendes
  • 519
  • 1
  • 8
  • 18
0
votes
2 answers

Manually connect to a user's twitter account - Spring Social

I'm running a background task and in this task I want to consult the UserConnection database and manually connect to each user's twitter account and pull some data from twitter using users operation. The table provides the following fields USERID …
Olayinka
  • 2,813
  • 2
  • 25
  • 43
0
votes
2 answers

Geolocate tweets from Twitter API - Spring social twitter

I want to get the coordinates of tweets longitude and latitude, but I don't know how to do it. How to get coordination of data from Twitter API? HOw do we get the geolocation using Spring social twitter ? The Tweet class doesn't define a getLocation…
Mirou NN
  • 21
  • 1
0
votes
1 answer

Invalid / expired Token - 401 - Unauthorized (Authorization Required) using Spring.Social.Twitter

I am using the Spring.Net Framework (spring.rest, spring.social.core and spring.social.twitter (2.x - oauth 1.0a) with c#. The idea of the application will be for an event, people can link their twitter account to the event and as results are…
0
votes
2 answers

spring social Twitter update status not giving id_str

I am using spring social twitter for my project. I am trying to make tweet favorite, for that I need id_str = "your tweet id". But the problem is when I do update status using spring social it's return id = "" but not id_str. I seen that it's…