This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<sfdc:publish-topic name="AccountUpdates" query="SELECT Name, Id FROM Account"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:sfdc="http://www.mulesoft.org/schema/mule/sfdc" | |
xsi:schemaLocation=" | |
http://www.mulesoft.org/schema/mule/core | |
http://www.mulesoft.org/schema/mule/core/current/mule.xsd | |
http://www.mulesoft.org/schema/mule/sfdc | |
http://www.mulesoft.org/schema/mule/sfdc/4.0/mule-sfdc.xsd"> | |
<sfdc:config username="YOUR_USER" password="YOUR_PASSWORD" securityToken="YOUR_TOKEN"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.mule.modules</groupId> | |
<artifactId>mule-module-linkedin</artifactId> | |
<version>1.0</version> | |
</dependency> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linkedin:update-current-status status="The new LinkedIn Cloud Connector for Mule is awesome!" postToTwitter="true"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linkedin:send-invite-by-email email="#[map-payload:email]" | |
firstName="#[map-payload:firstName]" | |
lastName="#[map-payload:lastName]" | |
subject="#[map-payload:subject]" | |
message="#[map-payload:message]"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linkedin:search-people sortOrder="RECOMMENDERS"> | |
<linkedin:search-parameters> | |
<linkedin:search-parameter key="CURRENT_COMPANY">MuleSoft</linkedin:search-parameter> | |
</linkedin:search-parameters> | |
<linkedin:profile-fields> | |
<linkedin:profile-field>LAST_NAME</linkedin:profile-field> | |
<linkedin:profile-field>TWITTER_ACCOUNTS</linkedin:profile-field> | |
</linkedin:profile-fields> | |
</linkedin:search-people> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linkedin:search-people sortOrder="RECOMMENDERS"> | |
<linkedin:search-parameters> | |
<linkedin:search-parameter key="CURRENT_COMPANY">MuleSoft</linkedin:search-parameter> | |
<linkedin:search-parameter key="TITLE">Engineer</linkedin:search-parameter> | |
</linkedin:search-parameters> | |
<linkedin:profile-fields> | |
<linkedin:profile-field>LAST_NAME</linkedin:profile-field> | |
<linkedin:profile-field>HONORS</linkedin:profile-field> | |
</linkedin:profile-fields> | |
</linkedin:search-people> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<linkedin:config apiKey="my key here" apiSecret="my secret here" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mule xmlns="http://www.mulesoft.org/schema/mule/core" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:linkedin="http://www.mulesoft.org/schema/mule/linkedin" | |
xsi:schemaLocation=" | |
http://www.mulesoft.org/schema/mule/core | |
http://www.mulesoft.org/schema/mule/core/current/mule.xsd | |
http://www.mulesoft.org/schema/mule/linkedin | |
http://www.mulesoft.org/schema/mule/linkedin/1.0/mule-linkedin.xsd"> | |
<!-- here goes your flows and configuration elements --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<googlemaps:get-distance origin="San+Francisco" destination="Milbrae" /> | |
<googlemaps:get-distance destination="Milbrae" /> |