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
5
votes
2 answers

Modifying files from external library in Java

I have a Spring Framework project which uses Maven for resolving dependencies. The project has a dependency to another Spring project (Spring Social Facebook), which is used for Facebook login. Suddenly, I started to get a lot of errors because the…
ba0708
  • 10,180
  • 13
  • 67
  • 99
5
votes
2 answers

unable to get spring-social-showcase-boot working due to facebook scope?

I am following the instructions provided here to get spring-social-showcase-boot running in my local. This is the error I get when I try to authenticate using facebook. The error is clear that read_stream scope is invalid. But I am unable to figure…
brain storm
  • 30,124
  • 69
  • 225
  • 393
5
votes
4 answers

Spring boot whitelabel 404

Hello guys I keep getting this error even though I have followed spring tutorial from their website. I have been trying to figure it out why I'm getting this error. I am able to connect to facebook but when trying to retrieve the feeds like the…
Jenn Fitz
  • 77
  • 1
  • 2
  • 9
5
votes
1 answer

Does the Facebook Graph API allow to search by e-mail?

I'm trying to search by e-mail using the Facebook Graph API but I always got the error result: request: .../search?q=some@email.coml&type=user result: { "error": { "message": "(#200) Must have a valid access_token to access this endpoint", …
5
votes
1 answer

How to integrate facebook login with Struts2?

I know there are two methods to integrate facebook login with a Java application: 1) Using Facebook code (JavaScript) I could use the Facebook provided code blew to allow users to login but the problem is that, I am not sure how to send user's…
Jack
  • 6,430
  • 27
  • 80
  • 151
5
votes
1 answer

Spring social vs javascript (facebook authentication )

I am developing a native mobile application (for ios ) & a web application that can use facebook authentication to register. I want to know what is the adequate solution to make the authentication? Should I use spring social or javascript if I want…
Zrom
  • 1,192
  • 11
  • 24
5
votes
4 answers

How to get profile image url from Facebook with spring-social?

I use spring-social-facebook to interact with Graph API (1.0.3.RELEASE if it's metter). And I can't find any operation to retrieve profile's image url. I found only operations which return array of bytes and they are not very convenient for the…
4
votes
1 answer

Spring Social : OAuthException: Response body is incorrect. Can't extract a token from this

Can any one help me on this, please I get the following exception when I try to parse Facebook token, using spring social org.scribe.exceptions.OAuthException: Response body is incorrect. Can't extract a token from this: This is my code : …
4
votes
0 answers

Spring Social authentication filter not working, how can I debug it?

I'm having trouble with Spring SocialAuthenticationFilter, I see that it's loaded in the filter chain but when I access "/auth/facebook?code=...", it does not process that input. Here is my WebSecurityConfig's configure method: @Override protected…
4
votes
2 answers

Spring Boot starter social Facebook add Permissions

I'm using Spring Boot starter social Facebook in order to authenticate/authorize users through Facebook. I'd like to add some Permissions, for example email in order to retrive user email address. How it can be provided with Spring Boot Facebook…
4
votes
1 answer

Enabling logging for Spring Social

I have a Spring MVC application which uses Spring Social Facebook to enable Facebook login. This is working fine on my local machine, but it currently doesn't work in my staging environment. My problem is that I cannot figure out what goes wrong.…
ba0708
  • 10,180
  • 13
  • 67
  • 99
4
votes
1 answer

not able to understand spring social at all especially the ProviderSignInController

i am trying to understand what is ProviderSignInController does but i am facing a hard time understanding it. So when i click login with facebook i go to facebook login page and than after entering my credentials the following method is called…
Saurabh Kumar
  • 16,353
  • 49
  • 133
  • 212
4
votes
2 answers

Integrate Spring Security with Facebook Login

I use Spring MVC and Spring Security for my project.. This using my own user data for authentication. But now i trying to integrate with Facebook. i have created app on Facebook means i got Client ID and client Secret.. I also read some questions in…
3
votes
2 answers

Redirect_Uri use http instead of https with Spring social Facebook Login on Heroku

This is Spring MVC application and host on Heroku which has valid ssl certificate. When I click on the following link from the spring mvc web application https://www.website.com/auth/facebook It redirects to this…
3
votes
2 answers

How to change SocialAuthenticationFilter.filterProcessesUrl when using SpringSocialConfigurer?

The Spring Social SocialAuthenticationFilter processes the url /auth. How can I change this url? There is a method SocialAuthenticationFilter.setFilterProcessesUrl(String filterProcessesUrl). How can I access the SocialAuthenticationFilter object to…
1
2
3
13 14