@Value("${github.access.token}")
private String githubAccessToken;
@Bean
public GitHubConnectionFactory gitHubConnectionFactory() {
GitHubConnectionFactory factory = new GitHubConnectionFactory(githubClientId, githubClientSecret);
factory.setScope("user");
return factory;
}