Twitter Timeline Source
Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Stable"
Allows to get tweets from the timeline of a specific user from Twitter.
It requires tokens that can be obtained by creating an application in the Twitter developer portal: https://developer.twitter.com/.
Configuration Options
The following table summarizes the configuration options available for the twitter-timeline-source
Kamelet:
Property | Name | Description | Type | Default | Example |
---|---|---|---|---|---|
Access Token |
Required The Access Token from the Twitter application in the developer portal. |
string |
|||
Access Token Secret |
Required The Access Token Secret from the Twitter application in the developer portal. |
string |
|||
API Key |
Required The API Key from the Twitter application in the developer portal. |
string |
|||
API Key Secret |
Required The API Key Secret from the Twitter application in the developer portal. |
string |
|||
User |
Required The user we want to read the timeline. |
string |
ApacheCamel |
Dependencies
At runtime, the twitter-timeline-source
Kamelet relies upon the presence of the following dependencies:
-
camel:jackson
-
camel:twitter
-
camel:kamelet
Usage
This section describes how you can use the twitter-timeline-source
.
Knative source
You can use the twitter-timeline-source
Kamelet as a Knative source by binding it to a Knative object.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: twitter-timeline-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: twitter-timeline-source
properties:
accessToken: The Access Token
accessTokenSecret: The Access Token Secret
apiKey: The API Key
apiKeySecret: The API Key Secret
user: ApacheCamel
sink:
ref:
kind: Channel
apiVersion: messaging.knative.dev/v1
name: mychannel
Prerequisite
You have Camel K installed on the cluster.
Procedure for using the cluster CLI
-
Save the
twitter-timeline-source-binding.yaml
file to your local drive, and then edit it as needed for your configuration. -
Run the source by using the following command:
kubectl apply -f twitter-timeline-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind twitter-timeline-source -p "source.accessToken=The Access Token" -p "source.accessTokenSecret=The Access Token Secret" -p "source.apiKey=The API Key" -p "source.apiKeySecret=The API Key Secret" -p "source.user=ApacheCamel" channel:mychannel
This command creates the KameletBinding in the current namespace on the cluster.
Kafka source
You can use the twitter-timeline-source
Kamelet as a Kafka source by binding it to a Kafka topic.
apiVersion: camel.apache.org/v1alpha1
kind: KameletBinding
metadata:
name: twitter-timeline-source-binding
spec:
source:
ref:
kind: Kamelet
apiVersion: camel.apache.org/v1alpha1
name: twitter-timeline-source
properties:
accessToken: The Access Token
accessTokenSecret: The Access Token Secret
apiKey: The API Key
apiKeySecret: The API Key Secret
user: ApacheCamel
sink:
ref:
kind: KafkaTopic
apiVersion: kafka.strimzi.io/v1beta1
name: my-topic
Prerequisites
-
You’ve installed Strimzi.
-
You’ve created a topic named
my-topic
in the current namespace. -
You have Camel K installed on the cluster.
Procedure for using the cluster CLI
-
Save the
twitter-timeline-source-binding.yaml
file to your local drive, and then edit it as needed for your configuration. -
Run the source by using the following command:
kubectl apply -f twitter-timeline-source-binding.yaml
Procedure for using the Kamel CLI
Configure and run the source by using the following command:
kamel bind twitter-timeline-source -p "source.accessToken=The Access Token" -p "source.accessTokenSecret=The Access Token Secret" -p "source.apiKey=The API Key" -p "source.apiKeySecret=The API Key Secret" -p "source.user=ApacheCamel" kafka.strimzi.io/v1beta1:KafkaTopic:my-topic
This command creates the KameletBinding in the current namespace on the cluster.