Questions tagged [spring-social-facebook]

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

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

Features:

  • A service provider and connection factory for use with Spring Social's connection framework
  • A Java API binding for Facebook's Graph API
  • A real-time update controller for handling real-time update callbacks from Facebook
  • A disconnect controller to handle disconnect callbacks from Facebook
  • Much more...

More Information:

Getting Started Guides:

Related Tags:

199 questions
3
votes
1 answer

How to handle ExpiredAuthorizationException (The authorization has expired) in spring-social-facebook

I'm using spring-social-facebook and sometimes, after some time the authentication seems to expire and I get this exception: org.springframework.social.ExpiredAuthorizationException: The authorization has expired. at…
troig
  • 7,072
  • 4
  • 37
  • 63
3
votes
1 answer

Which version of spring-social-facebook fits to which Facebook Graph API version?

How can I find out, which version of spring-social-facebook uses which version of Facebook's Graph API? Is there a chance to configure the API version in spring-social-facebook? I'm asking this, as in the moment (31.10.2016) the newest version of…
3
votes
1 answer

Adding Facebook authentication to my Spring MVC application

I'm trying to configure OAuth2 authentication into an existing Spring MVC app that is currently configured to use simple FORM authentication. I'd like to use Facebook as authentication provider, but I also need to maintain form authentication and to…
davioooh
  • 23,742
  • 39
  • 159
  • 250
3
votes
1 answer

How do I report a severe bug to the Spring Social Facebook team (Login fails after Facebook's Dec 6, 2015 patch)?

My website's Facebook Login stopped working after Facebook released a patch yesterday (December 6, 2015 12:00am). Facebook Login worked yesterday afternoon. It looks like Facebook might have updated their code with a different integer range (from…
Eric Wo
  • 71
  • 2
3
votes
1 answer

Spring Social Facebook: Getting Null photo information (urls) Only Id is not null

I've been able to retrieve list of album by using the following: final Facebook facebook = new FacebookTemplate(facebookAccessToken, appName); final PagedList albumList = facebook.mediaOperations().getAlbums(); for (Album album :…
3
votes
1 answer

How to logout from Facebook using Spring Social

I am having trouble trying to implement a logout button using the Facebook API in Spring Social. To logout, do I have to call a URL like I did in the login button below? I was able to implement the login calling the URL '/connect/facebook' as…
3
votes
0 answers

Using a Facebook token received from a native iOS/ Android client

We implement a native iOS application on top of our application server. We want to give the user the option to login with facebook account BUT we want the account creation to take place in application server. As i understand, i need to login to…
mspapant
  • 1,860
  • 1
  • 22
  • 31
3
votes
4 answers

Spring social NoSuchMethodError SocialAuthenticationFilter.getFilterProcessesUrl()

I use spring security login. Now I'm trying to add spring social facebook login, but I get many error information. First, when I try to use the same method like spring social guide, I can't @Autowired private Facebook facebook I found a…
3
votes
2 answers

Spring Social Facebook

I am developing with Spring Social and Thymeleaf from the quick start example, but I realised that it only supports one Facebook object per controller. This means the sample can't provide support for multiple users and I am guessing it has to do…
3
votes
1 answer

What is required to integrate Grails with Spring Social (Facebook, Twitter and Google)

My Spring is pretty good (or certainly used to be, its been about 2 years). Grails I'm pretty new to. I would like to do 2 things. Integrate Spring Security with my Grails application. Integrate Spring Social, Facebook, Twitter and Google to allow…
2
votes
2 answers

How do I get the accessToken when creating FacebookApi in spring-social

I am trying to use Spring social to connect to a facebook account, I have injected a FacebookServiceProvider into my serverside class as follows:
Clinton Bosch
  • 2,497
  • 4
  • 32
  • 46
2
votes
0 answers

Login with Facebook: Bad Request. This combination of host and port requires TLS

I have web application which use spring social facebook to login via favebook and register new account. I created Self signed certificate SSL and when I input https://localhost:8001/ its redirect me to my login page, but when I click on button…
John123
  • 101
  • 2
  • 10
2
votes
0 answers

CORS error for a server sent redirect URL for facebook social login

So, I have written a REST API using Spring(java), which is secured using Basic Authentication and also responsible for handling the social-logins. Below is the configuration for facebook login. @Configuration @EnableWebSecurity public class…
2
votes
0 answers

Upgrade to Facebook Graph API v2.7 or higher

I have a Java website that uses Spring Social for integration with Facebook (account registration and sign-in with a Facebook email address). Here is what I have in pom.xml: org.springframework.social
curious1
  • 14,155
  • 37
  • 130
  • 231
2
votes
3 answers

why Spring social facebook -2.0.3 using deprecated graph api version 2.5 which is deprecated

We are using spring-social-facebook-2.0.3 latest jar in production environment. In April 2018 graph api v2.5 is going to shut down. But the spring-social-facebook-2.0.3 latest jar is still using this deprecated graph API internally. Anyone has any…
Abhishek Singh
  • 1,367
  • 1
  • 22
  • 46
1 2
3
13 14