This example listen for tweets which are mentioning the @cameltweet
twitter account. Information from the user whom mentions is then created
as a contact in Salesforce.
This example is already configured using a testing purpose twitter account named `cameltweet'. And therefore the example is ready to run out of the box.
This account is only for testing purpose, and should not be used in your custom applications. For that you need to setup and use your own twitter account.
This example uses Camels own test Salesforce developer account, you would most likely want to sign up with your own Developer account at https://developer.salesforce.com/. After you have done that, you’ll need to create a Connected Application for your integration.
To do this after logging in to your Salesforce Developer account, navigate to Apps located under Build and then Create, there you should see Connected Apps table in the heading click on New and fill in the indicated required fields and enable the OAuth Settings, for Callback URL you can use https://login.salesforce.com/services/oauth2/success.
In the Available OAuth Scopes add Access and manage your data (api) and Perform requests on your behalf at any time (refresh_token, offline_access).
After clicking Save click on Manage on the top of the page and then click on Edit Policies. Change the IP Relaxation to Relax IP restrictions and click on Save.
NOTE: This will get you started quicker, but production you should re-evaluate to comply with your security needs.
Next gather your Consumer Key (clientId property), Consumer Secret (clientSecret) and either use username and password of the developer account; or get the refresh token from Salesforce (more on this below).
The example adds a custom field to Contact SObject, to add it to your Salesforce environment go into Customize under Build and choose Fields under Contact.
In Contact Custom Fields & Relationships click on New and add a
field of type Text
with field label Twitter Screen Name
, length
of 15 and for uniqueness select Do not allow duplicate values and set
the Set this field as the unique record identifier from an external
system.
In your browser go to the URL change the __YOUR_CLIENT_ID_HERE__
with your connected application Consumer Key:
https://login.salesforce.com/services/oauth2/authorize?response_type=token&client_id=
YOUR_CLIENT_ID_HERE&redirect_uri=https://login.salesforce.com/services/oauth2/success&display=touch
Allow access to the application, and you’ll end up on a page with
refresh_token
after the #
, something like:
https://login.salesforce.com/services/oauth2/success#access_token=..&refresh_token=
<refresh_token>&instance_url=...&issued_at=...&signature=...&scope=...&token_type=Bearer
The best way to generate Java representation of Salesforce SObjects is
to use the camel-salesforce-maven-plugin
and specify the desired DTO in <configuration> section, for example:
<configuration> <clientId>${camelSalesforce.clientId}</clientId> <clientSecret>${camelSalesforce.clientSecret}</clientSecret> <userName>${camelSalesforce.userName}</userName> <password>${camelSalesforce.password}</password> <includes> <include>Contact</include> </includes> </configuration>
To generate only DTOs needed for Contact, but the parameter value can be specified using regular expressions.
To run the example type using generate.dto profile
mvn -DcamelSalesforce.clientId=3<client id> \ -DcamelSalesforce.clientSecret=<client secret> \ -DcamelSalesforce.userName=<username> \ -DcamelSalesforce.password=<password> -Dgenerate.dto spring-boot:run
To stop the example hit ctrl+c
If you hit any problem using Camel or have some feedback, then please let us know.
We also love contributors, so get involved :-)
The Camel riders!