我正在使用spring-social-facebook,有时身份验证似乎要过期了,我得到了这个异常:
org.springframework.social.ExpiredAuthorizationException: The authorization has expired.
at org.springframework.social.facebook.api.impl.FacebookErrorHandler.handleFacebookError(FacebookErrorHandler.java:83)
at org.springframework.social.facebook.api.impl.FacebookErrorHandler.handleError(FacebookErrorHandler.java:59)
at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:667)
at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:620)
at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:595)
at org.springframework.web.client.RestTemplate.getForObject(RestTemplate.java:303)
at org.springframework.social.facebook.api.impl.SocialContextTemplate.getSocialContext(SocialContextTemplate.java:120)我不知道如何处理这个error...Would --在身份验证过期后能够自动重新连接吗?
使用的版本:
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-facebook</artifactId>
<version>2.0.4.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.social</groupId>
<artifactId>spring-social-core</artifactId>
<version>1.1.4.RELEASE</version>
</dependency>我发现了类似的问题:
任何帮助都会被接受。
发布于 2017-08-31 17:38:31
要解决此问题,必须向社会配置ReconnectFilter文件中添加一个:
@Bean
public ReconnectFilter apiExceptionHandler(UsersConnectionRepository usersConnectionRepository, UserIdSource userIdSource) {
return new ReconnectFilter(usersConnectionRepository, userIdSource);
}此ReconnectFilter依赖于UserIdSource Bean来检索用户信息和刷新连接。你必须覆盖它:
@Override
@Bean
public UserIdSource getUserIdSource() {
return new UserIdSource() {
@Override
public String getUserId() {
User user = getUser();
if (user == null) {
throw new IllegalStateException("Unable to get a ConnectionRepository: no user signed in");
}
return user.getId();
}
};
}您可以在下面看到整个Social Config文件:
@Configuration
@PropertySource("classpath:application.properties")
@EnableSocial
public class SocialConfig extends SocialConfigurerAdapter {
@Override
public void addConnectionFactories(ConnectionFactoryConfigurer cfConfig, Environment env) {
cfConfig.addConnectionFactory(new FacebookConnectionFactory(env.getProperty("facebook.appKey"), env.getProperty("facebook.appSecret")));
}
@Bean
public UsersConnectionRepository usersConnectionRepository(ConnectionFactoryLocator connectionFactoryLocator) {
return new UserConnectionRepositoryImpl(connectionFactoryLocator);
}
@Override
@Bean
public UserIdSource getUserIdSource() {
return new UserIdSource() {
@Override
public String getUserId() {
User user = getUser();
if (user == null) {
throw new IllegalStateException("Unable to get a ConnectionRepository: no user signed in");
}
return user.getId();
}
};
}
@Bean
public ReconnectFilter apiExceptionHandler(UsersConnectionRepository usersConnectionRepository, UserIdSource userIdSource) {
return new ReconnectFilter(usersConnectionRepository, userIdSource);
}
@Bean
@Scope(value = "request", proxyMode = ScopedProxyMode.INTERFACES)
public ConnectionRepository connectionRepository(ConnectionFactoryLocator connectionFactoryLocator) {
User user = getUser();
if (user == null) {
throw new IllegalStateException("Unable to get a ConnectionRepository: no user signed in");
}
return usersConnectionRepository(connectionFactoryLocator).createConnectionRepository(user.getId());
}
@Bean
@Scope(value = "request", proxyMode = ScopedProxyMode.INTERFACES)
public Facebook facebook(ConnectionRepository repository) {
Connection<Facebook> connection = null;
if (repository != null) {
connection = repository.findPrimaryConnection(Facebook.class);
}
return connection != null ? connection.getApi() : null;
}
}https://stackoverflow.com/questions/41170107
复制相似问题