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
2
votes
1 answer

Spring-Social Dependency not found

I wanted to add the spring-social-facebook dependency. It worked with the latest RELEASE 2.0.3 org.springframework.social spring-social-facebook
Markus G.
  • 1,620
  • 2
  • 25
  • 49
2
votes
1 answer

Add facebook parameter display=popup when using Spring SocialAuthenticationFilter

I need to display the facebook social login in a popup window. In order that facebook login dialog is displayed with minimal decoration, I want to add the facebook parameter display=popup. But I'm not using Spring Social's ConnectController - in…
2
votes
1 answer

Spring Social Login: How to add more than one app of the same social provider (f.e. Facebook)?

My Spring MVC web application is serving simultanously three different web shops with three different domains (let's call them domain1.com, domain2.com and domain3.com). For each of these shops I need to offer an own Social Login (with custom login…
2
votes
1 answer

What has happened with the class org.springframework.social.connect.ConnectionRepository in Spring Social 3.0.0.M1?

I am a beginner with the Spring Framework and wanted to try out Spring Social to make a simple web application which retrieves data from Facebook. For this I followed Spring Socials official "Getting started guide" called "Accessing Facebook…
2
votes
3 answers

Implement PrincipalExtractor for facebook (spring boot with social)

I am trying to implement social login for a spring boot application. I am using Spring Boot version 1.4.2. the application uses spring security so I opted to use the @EnableOAuthSso annotation on WebSecurityConfigurerAdapter. I am using Facebook as…
2
votes
0 answers

UnknownHostException: graph.facebook.com

I am trying to login with facebook, with spring-social, but after of login in facebook I got the next error: ERROR: org.springframework.social.connect.web.ProviderSignInController - Exception while completing OAuth 2 connection: …
nole
  • 1,422
  • 4
  • 20
  • 32
2
votes
2 answers

Spring Facebook Template map fetchObject to PagedList

I'm using the following approach to return a Facebook user's music preferences: //FIXME: Fetch results in a single operation val likes = facebook.likeOperations().music val artists = ArrayList() for (musicLiked in likes) { val…
Jasper Blues
  • 28,258
  • 22
  • 102
  • 185
2
votes
2 answers

Spring FacebookTemplate raises permission exception for user profile

I'm having trouble continuing an OAuth session using a token obtained on an iOS client from a back-service. Specifically it looks to be a permission problem: iOS Client Obtains Access Token (ObjC / FB iOS SDK v3.24) Session established with the…
Jasper Blues
  • 28,258
  • 22
  • 102
  • 185
2
votes
3 answers

Spring Social Facebook UncategorizedApiException: (#3) Application does not have the capability to make this API call

I have developed a simple web application that accesses Facebook data through Spring Boot (v1.2.6.RELEASE) and Spring Social Facebook (v2.0.2.RELEASE) similar to the example given here I have created a new App in Facebook which use Graph API version…
2
votes
1 answer

ERROR SchemaUpdate:237 - near "from": syntax error

I am new to Spring, and I was just wondering what do these errors mean? ERROR SchemaUpdate:236 - HHH000388: Unsuccessful: create table FacebookPosts (id integer, created_time timestamp not null, from varchar not null, message varchar not null,…
Adam Barry
  • 25
  • 1
  • 7
2
votes
0 answers

Iterating over PagedList result retrieved from the Facebook Graph API

Trying to retrieve all marketing accounts of a Facebook business account using the spring social framework for Facebook . I want to know if there is any better way to it other than what i did below ? Does what i did for paging the query result is…
2
votes
0 answers

Spring Social Facebook Issue

I'm trying to use Spring Social Facebook in order to read in my application (at moment a simple Java class test) But I'm having some problems. I created a very simple project (maven oriented) and I'm using Spring social 1.1.0 I created the following…
Angelo Immediata
  • 6,635
  • 4
  • 33
  • 65
2
votes
0 answers

Multiple Social Logins with spring

I have multiple WebSecurityConfigurerAdapters in my webapp one for each part of the app and need to have multiple "login with FB/Google" buttons with different behaviours. I have been trying to configure multiple SpringSocialConfigurers one per each…
2
votes
2 answers

Which Graph API Version is used by spring-social-facebook

Which Graph API Version is used by Spring-Social-Facebook in the current stable release 1.1.0.RELEASE? I expect it's the Graph API v1.x but I can't find anything about it in the documentation. Is there allready a stable solution for the Graph API…
Adrian
  • 505
  • 1
  • 6
  • 19
2
votes
3 answers

Facebook page feed without user login

Maybe you can help me out with something. I want to fetch all publicly available posts on a Facebook page using Spring Social. I don't need OAuth authentication with a certain user or something since I don't want to post, comment or whatsoever in…