Spring Social is an extension of the Spring Framework that enables applications to connect with Software-as-a-Service providers such as Twitter, Facebook and other OAuth authentication based APIs. Spring social provide a ready to use OAuth authentication framework for web based applications.
0
votes
0answers
21 views
email retrieved from userProfile is null (spring social)
Why sometimes my app retrieve from UserProfile email as null ? I use Spring Social and my configuration is the same like configuration in spring_social_samples project created by Craig Walls
...
0
votes
2answers
30 views
Including a different version of a library, in a maven dependency totally broke my build
So I had
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
...
0
votes
1answer
15 views
Spring social type mismatch error while twitter API binding
I am following the tutorial to implement a twitter search on Spring framework. Unfortunately, I get an type mismatch error in here:
import org.springframework.social.twitter.api.impl.TwitterTemplate;
...
0
votes
0answers
13 views
Twitter search in Spring Framework
I want to develop an web application using Spring framework to search keywords on public tweets for concluding some statistics. I decided to use Spring Social for this purpose, however, it seems that ...
1
vote
0answers
40 views
Looking for the right way: Spring Social + Spring RESTful API + Spring WebApp + Mobile Clients
I have a RESTful API built with Spring 3.1, using Spring Security as well. I have a web application, also a Spring 3.1 MVC application. I am planning to have mobile clients accessing my REST API. So ...
0
votes
1answer
31 views
Spring Data Neo4j in combination with Spring-Social and Spring-Security
I am in an early stage of a small Spring-based project which utilizes Spring Data Neo4j with an embedded database (but possibly could use a server instance in a later development , too).
My data ...
1
vote
1answer
40 views
How to recover from a Spring Social ExpiredAuthorizationException
I am trying to implement Google Oauth2 with Spring Social and spring-social-google. Initial authentication works fine. However after some time the authentication expires and I am hit by
...
0
votes
0answers
33 views
Open Graph Publish Using Spring Social
I am trying to use Open Graph API of Facebook using Spring Soical in my project and trying to publish action on facebook using function:
facebook.openGraphOperations().publishAction("og.likes", ...
0
votes
0answers
33 views
always-use-default-target=“false” and default-target-url do not work with spring-social
always-use-default-target and always-use-default-target="false" works fine if the user logins with username and password
Both attributes seems to be ignored when using spring-social
When the user ...
1
vote
1answer
39 views
What is the difference between ConnectController and ProviderSigninController in spring-social?
I am new to spring-social framework and trying to implement the login functionality for my portal using spring-social.
I read the documentation but i am still a little confused. Both controllers are ...
0
votes
0answers
33 views
how to connect a local user(from our own site) with social networking sites using spring social with persisting database?
here is my configuration class,
@Configuration
public class SocialConfig {
@Inject
private DataSource h2DataSource;
@Autowired
UserBasicServices userBasicServices;
@Bean
public ...
3
votes
2answers
52 views
integration application with facebook
Is is possible use Spring Social to authentication via Facebook ?
Suppose I have a web application and want to log in there using your Facebook account. Can someone show me an example of how to do it ...
3
votes
1answer
119 views
Spring Social facebook + Spring Security
I want to integrate Spring Social facebook into my application with Spring Security (I use xml configurations). All I need is just connect facebook account with my app's account. In simple example I ...
1
vote
0answers
69 views
SpringSocial XML Configuration Schema Error
I tried the Spring Social Showcase using XML but it appears to have an error in the XML.
The XML file is not working. I have read x marks on line 23 to 27.
<facebook:config ...
0
votes
0answers
50 views
Spring.social.facebook
I'm using eclipse EE Juno, with maven, in a web project on Tomcat7.
Some erros come when i put this dependency on pom.xml:
<dependency>
...
0
votes
0answers
49 views
Spring Social with Liferay
I am currently developing an application in Liferay 6.1 GA2 and I would like to use the Spring Social services.
It would be great help if anybody can share some documents, links or sample code.
...
0
votes
0answers
29 views
Spring Social Tag a Friend on a wall feed
I am using Spring Social for Android. I know how to use the facebook.feedOperations() to get access to the signed in user wall. Now by using facebook.feedOperations().updateStatus(wallPostText); how ...
0
votes
0answers
27 views
Spring Social SDK in android
I have recently started using Spring Social Android Facebook SDK. I have been trying to load a lists of friends a user has but have not been able to find an example. Can anyone please show me how to ...
3
votes
2answers
97 views
Different principals in spring security context when 'in-bean' login method used
For couple of days I have been working on integrating Facebook with our application. I have successfully made the connection working and now after Facebook Login I copy the user to our database and ...
1
vote
1answer
134 views
Issues with automatic login with a custom user details service
I'm having some issues with my implementation of spring security. I am using a custom user details service and when I attempt to signup a new account it doesn't seem to be logging in the user as it ...
1
vote
1answer
108 views
Integrate app with spring social website
I currently have a website set up with Spring MVC and Spring Social so users can sign in with Facebook and Twitter.
Now I want to authorize my Android client to access my third-party web site, with ...
1
vote
0answers
200 views
Spring Social with Spring Security - UserDetailsService being called after SignInAdapter
I had first implemented Spring Security and got it working with the persistent token method. I then implemented Spring Social and, after a long struggle, finally was able to get it working. The ...
0
votes
0answers
33 views
Spring Social For .NET - LinkedIn and Twitter Spring.Rest Version Conflict
I am using Spring.Social.LinkedIn in my ASP.NET MVC 4 project. Spring.Social.LinkedIn is dependent on Spring.Rest 1.1.0. Now I am trying to add Spring.Social.Twitter in my project through NuGet. But ...
0
votes
1answer
98 views
spring social facebook renew expired token [closed]
I'm using Spring Social and Java.
When a user's facebook access_token expires is there something I can do programmatically to renew the access_token without requiring the user to log into my web ...
1
vote
1answer
435 views
Spring Social: Superclass has no null constructors but no arguments were given
Im using Spring Social in my application:
<spring.framework.version>3.2.0.RELEASE</spring.framework.version>
<hibernate.version>4.1.9.Final</hibernate.version>
...
0
votes
1answer
48 views
Using spring social with Wicket
I am trying to implement Facebook login in my wicket application. I was going through Spring social and was wondering before continuing, can it be easily implemented with Wicket as it is some sort of ...
0
votes
0answers
106 views
Unexpected token (END_OBJECT), expected FIELD_NAME: missing property 'postType' that
I've some problem with fetchconnection method. I'm trying to get all posts of my page, but when jackson deserialize json object my app returns me this stack trace:
...
0
votes
0answers
670 views
https://graph.facebook.com/oauth/access_token" resulted in 400 (Bad Request) Spring Social
I want to update status using Spring Social programmatically. I tried oauth part with apache httpclient library. But I got exception - at line:
AccessGrant accessGrant = ...
3
votes
3answers
517 views
Spring MVC: How to use a request-scoped bean inside a spawned thread?
In a Spring MVC application, I have a request-scoped bean. I inject this bean somewhere. There, the HTTP-request serving thread could possibly spawn a new thread.
But whenever I try accessing the ...
0
votes
1answer
104 views
Configuring a connectionSignUp with social:jdbc-connection-repository element in spring social
I'm using spring social with XML configuration and I would like to inject the property connectionSignUp to enable implicit signup, but that's not possible because that element
...
0
votes
0answers
29 views
Problems with accented characters when posting an image
I'm having a problem with Spring Social's Facebook integration while posting a photo with a caption: accented characters are being messed up. If I post anything else, the accents work okay, the ...
1
vote
1answer
138 views
How to Tweet Programatically with Spring Social On Your Own Account
I'm trying to tweet programatically using Spring Social - I have created an twitter application, I have generated an OAuth access token for it, but I am not able to configure Spring Social itself in ...
1
vote
1answer
254 views
Login with facebook and using oauth 2.0 for authentication of REST api calls
I am using spring framework and REST architecutre in my api. Currently I am authenticating my REST call by sending username and password with every call. And users are stored in my database.
Now I ...
0
votes
1answer
136 views
Facebook Login redirects to localhost
I'm working on a website, which uses the Facebook Login with Spring Social. Currently I playing around with the example for version 3.
On localhost this works as intended. Online however, I get the ...
0
votes
1answer
443 views
How to use Facebook appAccessToken with Spring Social
I'm a bit confused as to how to use Facebook's app access token with Spring Social.
I already have an app access token by making a GET request to:
...
0
votes
0answers
99 views
Android Spring Facebook client
I was looking into the Spring Social Android Facebook Authentication example. but when i press the Connect button it simply gives me an error on the webpage, and after i log in it simply redirects me ...
0
votes
1answer
140 views
Google oAuth2 API gives a 401 UNAUTHORIZED
I'm trying to implement the Google oAuth2 API for login to my webapp using google credentials via Spring Social.
The query to Google is as follows
googleConnectionFactory = new ...
0
votes
0answers
113 views
Map embedded list of documents without id using spring data mongodb [closed]
I am trying to map this mongo document
{ "_id" : 1,
"connectionData" : [ {
"providerId" : "linkedin",
"providerUserId" : "lnramirez",
"displayName" : "Luis Ramirez M" },
...
1
vote
0answers
168 views
org.springframework…FirewalledResponse cannot be cast to org.springframework…SaveContextOnUpdateOrErrorResponseWrapper
I've a web app within spring-social-security. Security layer is based on remember-me cookies. All it works good, but I've a strange problem with cookies (maybe) when I restart my server.
This is the ...
2
votes
1answer
334 views
Spring social signin and spring security custom authentication manager
I am trying to understand if i am handling my server authentication properly
I am creating a server that uses Facebook to auto login, plus i am using hibernate
I do that by making the same process ...
1
vote
4answers
211 views
Linkedin “Scope” Variable not set
I'm having trouble setting up a connection to Linkedin Api using Spring Social.
I am passing the "scope" variable "r_emailaddress" as a hidden field with the form to retrieve the email address but ...
0
votes
1answer
46 views
Spring Social prepoplating local registeration form with values from provider
I'm trying to pre-populate my local registration with Linkedin Callback. I am getting a NullPointer Exception on the "Email" field when I attempt to register.
It is possible that Email Address Field ...
0
votes
0answers
246 views
Spring Security - SecurityContextHolder.getContext().getAuthentication() is null
I'm getting crazy about spring security configurtation. I coded a project with spring-social and I added to it spring security capabilities. This project offers to the users the possibility to log ...
0
votes
1answer
86 views
Hibernate having difficulty with '@' character in HQL
Working with hibernate and spring social,
I am trying to query the database by email address.
when i do this query:
public Account findAccountByUsername(String username) {
Session ...
0
votes
1answer
272 views
How to get notified when session expires in spring mvc 3 and servlet 3.0
Using tomcat 7, servlet 3.0, spring mvc3 with spring social, I get my class to listen sessions with;
public class AClass implements ApplicationContextAware, HttpSessionListener{
...
public void ...
0
votes
1answer
49 views
facebook user location fetch via SpringSocial
I have a code to fetch user details
In location area
I have used this code in controller class
model.addAttribute("location",facebook.userOperations().getUserProfile().getLocation());
this error ...
1
vote
1answer
265 views
RestTemplate - POST request for “https://api.twitter.com/oauth/request_token” resulted in 406 (Not Acceptable); invoking error handler
since morning I'm struggling out to understund how to implement a SignIn capability between my webApp (Spring-MVC) and Spring-Social.
I'm using XML configuration and it seems working good. I got ...
1
vote
1answer
115 views
Spring Social and Spring Security : Securing website resources
I'm developing an application using spring-social that allow users to connect via facebook with no sign-up at all, just click the connect button and you are logged in.
I am tracking the user via a ...
0
votes
3answers
110 views
Spring-Social Sign-In without Sing-up
I have recently started using Spring-Social.
In all the samples I am looking at there is the process of sign-in by clicking the image of "Connect with Facebook" and then being redirected to a page ...
0
votes
1answer
132 views
How to send an app invitation with Spring Social 1.1.0
I am working on a facebook game and I want a player to send an invitation to his/her friend. I tried facebook.feedOperations.postLink(...) but I get ...

