Hi,
I am trying to reply to a tweet with an ‘inline’ reply.
Whatever I try, the in_reply_to_status_id in the response always returns null.
I have the following jscode:
var reply = '@' + userId + ' : ' + message;
params = {
status: reply,
in_reply_to_status_id_str: reply_to_tweet_id_str,
in_reply_to_status_id: reply_to_tweet_id};
T.post('statuses/update', params, function (err, response) { ..........
The response contains (even if I hardcode the in_reply_to_status_id(_str) to the value of the id to reflect an existing tweet of the user I am mentioning):
in_reply_to_status_id: null,
in_reply_to_status_id_str: null,
in_reply_to_user_id: 1039444691199172600,
in_reply_to_user_id_str: '1039444691199172608',
in_reply_to_screen_name: 'myresearchuser1',
What goes wrong?
Thanks