-
Bug
-
Resolution: Done
-
Major
-
fuse-7.3
-
None
When testing the camel-linkedin quickstart I noticed that the userName, userPassword, clientId, clientSecret still need to be set to something for the component to work.
For example this configuration works:
<bean id="linkedinConfiguration" class="org.apache.camel.component.linkedin.LinkedInConfiguration"> <property name="clientId" value="null"/> <property name="clientSecret" value="null"/> <property name="redirectUri" value="https://localhost"/> <property name="userName" value="null"/> <property name="userPassword" value="null"/> <property name="accessToken" value="very long but correct access token"/> </bean>
But it should be also possible for this to work:
<bean id="linkedinConfiguration" class="org.apache.camel.component.linkedin.LinkedInConfiguration"> <property name="redirectUri" value="https://localhost"/> <property name="accessToken" value="very long but correct access token"/> </bean>
- causes
-
ENTESB-10923 [QUICKSTART] camel-linkedin quickstart is not working
- Done
- is cloned by
-
ENTESB-10924 camel-linkedin: If accessToken is set, other credentials should be unnecessary on Fuse-sb2 runtime
- Done
- links to