Package org.encuestame.social.api.support

Examples of org.encuestame.social.api.support.LinkedInConnections


    /**
     *
     * @return
     */
    public List<LinkedInProfile> getConnections() {
        LinkedInConnections connections = getRestTemplate().getForObject(
                "https://api.linkedin.com/v1/people/~/connections",
                LinkedInConnections.class);
        return connections.getConnections();
    }
View Full Code Here

TOP

Related Classes of org.encuestame.social.api.support.LinkedInConnections

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.