var b64content = fs.readFileSync('/home/sivasaivarma/Day Users/sivasaivarma/personal/bigdata/images/leadoid.jpg', { encoding: 'base64' })
T.post('media/upload', { media_data: b64content}, function (err, data, response) {
var mediaIdStr = data.media_id_string
var altText = "Small flowers in a planter on a sunny balcony, blossoming."
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
T.post('media/metadata/create', meta_params, function (err, data, response) {
if (!err) {
var params = { status: '@sivasai Nepal diverse and beautiful landscape with these adventure photos new to nepal came here for outing to see. on.natgeo.com/2dYabpI', media_ids: [mediaIdStr] }
T.post('statuses/update', params, function (err, data, response) {
console.log(data)
})
}
})
})
var params = { status: 'LEADoid', attachment_url: 'http://bit.ly/2kJaDc1'}
T.post('statuses/update', params, function (err, data, response) {
console.log(data)
})
})