1

人们经常在linkedIn上列出他们从大学学习的课程。

有谁知道是否可以使用 Spring Social 获取这些课程?

我在用着:

<org.springframework.social-version>1.1.0.BUILD-SNAPSHOT</org.springframework.social-version>
<org.springframework.social.linkedin-version>1.0.0.BUILD-SNAPSHOT</org.springframework.social.linkedin-version>     
<org.springframework-version>3.2.3.RELEASE</org.springframework-version>
<org.springframework.security-version>3.1.4.RELEASE</org.springframework.security-version>

我找到的最接近的是教育对象,但它似乎不包含课程。

linkedin.profileOperations().getUserProfileFull().getEducations()
4

1 回答 1

0

截至目前,不支持获取课程。

但是,我在 spring socials tracker 中添加了一个改进问题here

我找到了另一种通过休息操作获取课程的方法。

    Connection<LinkedIn> connection = connectionRepository.findPrimaryConnection(LinkedIn.class);
    if (connection != null) {
        LinkedIn linkedin = connection.getApi();
        String url = String.format("https://api.linkedin.com/v1/people/id=%s:(courses)", linkedin.profileOperations().getProfileId()); 
        String jsonData = linkedin.restOperations().getForObject(url, String.class);

        JSONObject obj = new JSONObject(jsonData).getJSONObject("courses");
        JSONArray courseArray = obj.getJSONArray("values");
        JSONObject course = courseArray.getJSONObject(0);

        String name = course.getString("name");
        System.out.println("This is the name of the first course: " + name);
    }

要知道一门课程属于哪所大学似乎很难。无法解决那部分。

于 2013-11-12T14:47:35.083 回答