I'm using spring social in my project. I already completed integration with facebook and twitter, but had trouble with linkedin.
if I try create connection:
Connection <LinkedIn> connection = connectionFactory.createConnection(accessToken);
then I have this exception:
java.lang.NoSuchMethodError: org.codehaus.jackson.map.SerializationConfig.withSerializationInclusion(Lorg/codehaus/jackson/map/annotate/JsonSerialize$Inclusion;)Lorg/codehaus/jackson/map/SerializationConfig;
I already tried use different versions of spring-social-linkedin and different version of jackson lib (v 1.9.2 and above) but unsuccessful.
Can anyone tell me how resolve this trouble?