mention - User by ID
Last updated
Last updated
{
"data": [
{
"id": "1542718751119925250",
"text": "testing appgregator api service @RonaldAdrs"
},
{
"id": "1542711952145018880",
"text": "testing appgregator apis @RonaldAdrs"
},
{
"id": "1542711843378331648",
"text": "hallo from bot appgregator apis @RonaldAdrs"
},
{
"id": "1542709708250685440",
"text": "status bots @RonaldAdrs"
},
{
"id": "1542706793469845504",
"text": "status bot @RonaldAdrs"
},
{
"id": "1542700215173812224",
"text": "tesLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. @RonaldAdrs"
},
{
"id": "1542699990039941122",
"text": "hallo from bot appgregator api @RonaldAdrs"
},
{
"id": "1542698875311378432",
"text": "hallo from bot api @RonaldAdrs"
},
{
"id": "1542545509554204672",
"text": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. @RonaldAdrs"
},
{
"id": "1542542475302432769",
"text": "Hello World!... @RonaldAdrs"
}
],
"meta": {
"next_token": "7140dibdnow9c7btw4228a6rl7f3tcwh7rsjcxdo1h261",
"result_count": 10,
"newest_id": "1542718751119925250",
"oldest_id": "1542542475302432769"
}
}curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/twitter/timelines/tweet/user-mention?name=qantor.co.id&connection_name=twitter-1&id=1541307718920572928' \
--header 'x-api-key: 43c464439b5507293ba7b315c9875907'var axios = require('axios');
var config = {
method: 'get',
url: 'https://us-central1-appgregator.cloudfunctions.net/twitter/timelines/tweet/user-mention?name=qantor.co.id&connection_name=twitter-1&id=1541307718920572928',
headers: {
'x-api-key': '43c464439b5507293ba7b315c9875907'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/twitter/timelines/tweet/user-mention?name=qantor.co.id&connection_name=twitter-1&id=1541307718920572928',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'x-api-key: 43c464439b5507293ba7b315c9875907'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;