Hi, I’m trying to implement new mention feature for my app, I tried with twurl tool with following command
twurlp -X POST '/1.1/statuses/update.json' -d 'auto_populate_reply_metadata=true&status=response4&exclude_reply_userids=4223092274,583328497&tweet_mode=extended&in_reply_to_status_id=851672676535984128'
But tweet still contains excluded users. Tweet link
{
"created_at": "Tue Apr 11 06:04:45 +0000 2017",
"id_str": "851677381198659584",
"full_text": "@TwidereTest @TwidereProject response4",
"display_text_range": [
29,
38
],
"entities": {
"user_mentions": [{
"screen_name": "TwidereTest",
"name": "Twidere Test",
"id": 4223092274,
"id_str": "4223092274",
"indices": [
0,
12
]
},
{
"screen_name": "TwidereProject",
"name": "Twidere Project",
"id": 583328497,
"id_str": "583328497",
"indices": [
13,
28
]
}
]
}
}
Is exclude_reply_userids being ignored at this moment?