Questions tagged [spring-social]

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 provides a ready to use OAuth authentication framework for web based applications.

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 provides a ready to use OAuth authentication framework for web based applications.

Features:

  • An extensible service provider framework that greatly simplifies the process of connecting local user accounts to hosted provider accounts.
  • A connect controller that handles the authorization flow between your Java/Spring web application, a service provider, and your users.
  • Java bindings to popular service provider APIs such as Facebook, Twitter, LinkedIn, TripIt, and GitHub.
  • A sign-in controller that enables users to authenticate with your application by signing in through a service provider.
  • Much more...

More Information:

Getting Started Guides:

Related Tags:

714 questions
0
votes
1 answer

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 org.springframework.social.InsufficientPermissionException: Insufficient permission for this…
hevi
  • 2,432
  • 1
  • 32
  • 51
0
votes
1 answer

Requestign addional permission to linkedin via ProviderSigninController

I'm using spring social to login using linked-in, I need to request for additional permission, I do with scope variable for other providers (facebook, twitter) it just works fine but for linked-in it does not, since Linked-in uses oAuth 1.0 it's not…
Gopal haris
  • 15
  • 1
  • 5
0
votes
1 answer

Want to login using spring security with Email OR mobile number

Want to login using Email OR mobile number using spring security. Here is my code:--
Tarun Gupta
  • 1,232
  • 2
  • 13
  • 26
0
votes
1 answer

How to integrate spring security and spring social to have the same execution flow in both cases?

I am using spring security for the authentication purposes in my project wherein after successful authentication, I get the principal object inside which the various details are stored. This principal object is passed to various methods which allow…
Abhinav
  • 961
  • 2
  • 11
  • 17
0
votes
1 answer

Can a facebook user opt out of the graph api?

I am using spring social to get a list of all the my friends. However, it seems that the number of friends I can get from the facebook graph api is not the same as the number of friends that facebook reports on my profile. According to facebook I…
ams
  • 60,316
  • 68
  • 200
  • 288
0
votes
1 answer

How to configure spring-social-facebook for a facebook canvas application

Looking at Keith Donald's and Roger Hughes's spring tutorial, the flow is as follows; IF user is signed in to to application THEN IF user is signed in to Facebook read Facebook data, display Facebook data ELSE (facebook…
hevi
  • 2,432
  • 1
  • 32
  • 51
0
votes
1 answer

Error in redirect_uri_mismatch with FourSquare

I am using spring social for connecting my app with foursquare facing error mentioned in attached image while specifying Callback URL in given image. For the same location when I specify "localhost:8080/CabFMS" then its working fine. Please help to…
Raman
  • 1,945
  • 3
  • 19
  • 30
0
votes
1 answer

Java config to XML config - Spring Social

I'm new to Java Config & am stuggling to convert a piece of Java based config to XML based config. Can anyone kindly guide me with the conversion. Many thanks! @Bean @Scope(value="singleton", proxyMode=ScopedProxyMode.INTERFACES) public…
LittleLebowski
  • 7,691
  • 13
  • 47
  • 72
0
votes
1 answer

Has anyone been able to run the Spring Social Showcase on Heroku?

I have downloaded Spring Social Showcase from git hub and have no problem running it on my localhost. When I try to run it on Heroku I get an application error. Checking the logs I see a Error H14 - No web processes running The heroku…
John Borys
  • 93
  • 1
  • 4
0
votes
1 answer

spring social twitter isConnected issue (RevokedAuthorizationException)

I'm using Grails and the spring social twitter plugin. Everything works fine except in one case: I check if the user is connected to twitter via this piece of code connectionRepository.findPrimaryConnection(Twitter.class) while this works fine if I…
yeka
  • 13
  • 5
0
votes
2 answers

Spring Social 500 exception

I am using Spring Social to integrate my app with Facebook. I checked out their quickstart project from github. I changed the properties file to have my own app's id. After running the project I see the login page. But after that I get the following…
Sara
  • 2,417
  • 7
  • 35
  • 52
0
votes
1 answer

Issue with adding multiple connection factories to spring social with spring 3.0.3

I am getting the following exception with my spring social config, if I put more than one connection factory. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'connectionFactoryLocator' defined in…
Gaurav Rawat
  • 1,294
  • 1
  • 25
  • 52
0
votes
1 answer

Implementing a mixed authentication using Spring security and Spring social Facebook

I am relatively new to Spring security and Spring social. I am trying to implement a mixed authentication with either standard Spring Security or Spring social Facebook. Thus, a user can authenticate: either with a standard Spring security login…
balteo
  • 23,602
  • 63
  • 219
  • 412
0
votes
2 answers

How to avoid connecting two different webapp accounts with one social account

I'm using Spring Social to connect user application account to a social account (Facebook and/or Twitter). It turns out that it is possible that two different user accounts connect to the same social account. Example: User1 in my webapp connects…
ssasa
  • 1,616
  • 1
  • 18
  • 30
0
votes
2 answers

GoogleConntectionFactory can't create connection

G'day everybody! I've got error like this: WARN/DefaultRequestDirector(22739): Authentication error: Unable to respond to any of these challenges: {authsub=WWW-Authenticate: AuthSub realm="https://www.google.com/accounts/AuthSubRequest"…
Rusfearuth
  • 3,261
  • 5
  • 28
  • 37