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.
My application built upon spring-social-twitter that enables users to sign in with Twitter has stopped working recently.
I've got an error message as below:
Callback URL not approved for this client application. Approved callback URLs can be…
I want to use spring social to develop an twitter app which will update status and upload photos.I am not able to understand how to do Oauth authentication using Spring social.All examples I saw talks about hardcoding the accesstoken which would…
Is there any way to get the comment/reply count for a tweet using GET statuses/user_timeline in addition to favorite_count and retweet_count which are already returned?
Thanks!
I need to live feed the tweets based on geolocation. By Twitter API documentation I understand we can search based on geolocaion.
But is it possible to stream based on geolocaion? and i use spring social twitter for API integration.
…
I'm currently experimenting with Spring Social Twitter and wonder how I could use it for a desktop application because you cannot provide a callback url.
Is there any possibility to use username and password for the authorization or a way to…
Why direct message is not sent?
spring-social-twitter:1.1.2.RELEASE does not work with spring-web:5.0.6.RELEASE
Example of main class:
package com.test;
import org.springframework.social.twitter.api.ResourceFamily;
import…
I am trying to sign in to my web application (developed using Spring Boot) using social logins. The logins for Google & facebook are okay. But the for some reason there is a token issue in the twitter login. I have created the project in the twitter…
I followed the instructions on the spring.io site: http://spring.io/guides/gs/accessing-twitter/
And I'm not getting a connection. The "findPrimaryConnection()" call is returning null. I'm not seeing any exceptions thrown. I did set the appId…
I have some problem with Spring Social Twitter and eventually more things, but i dont know how recognize where the problem is.
I have an simple app with RestControllers. On front user can click "Update" and with ajax i get request to do some…
I am working on a legacy application that posts Direct Messages to Twitter Users from our product. The API that was used is DirectMessageTemplate.sendDirectMessage(String toScreenName, String text) in spring-social-twitter 1.1.2. The call is now…
I'm developing an application which will get data from Twitter.
First I created an application.properties that contains the consumer ID and secret. Second I created a controller and injected Twitter and ConnectionRepository. I did everything as…
I am trying this example from Spring IO Guides
which explains how to retrieve list of friends from twitter.
But when I click on Connect to twitter it does not connect to twitter.
I have my appId and secretId in properties file and it is in the…
I am working on a project where I have to gather users' live stream from social networks (Twitter, Facebook etc.). I want to use Twitter Users Streams Api to get live tweet updates from registered users, analyze these updates and then store the…
I am using Spring Social Twitter to retrieve a friend's name of a user.
Here is my code.
@Controller
@RequestMapping("/")
public class HelloController {
private Twitter twitter;
private ConnectionRepository connectionRepository;
…
REST
I also tried with the postman but it gives the same error
@RestController
@RequestMapping()
public class REST {
@GetMapping("/tweet")
public void noticiaPost(){
String consumerKey = "AVlNWQzs3FYQ2DHsdDWY***";
…