I try to search a lot but did not get any solution, please help me with this. how do i insert any twitter user profile link while composing a tweet, its almost like mentioning someone but it shows a twitter user avatar & name just like in this tweet https://twitter.com/DepressedDarth/status/924689808265482240?screenshot from a tweet
Asked
Active
Viewed 99 times
0
-
Amir, I am sure this does not have any thing to with programming. This is a programming Q/A site. please delete your question or the community will make you delete it. :) TIA. – aitchkhan Oct 29 '17 at 19:02
-
sorry for that where should i add my question – Amir Khan Oct 29 '17 at 19:04
-
you can try that on [Quora](https://www.quora.com/) or [reddit](https://www.reddit.com/) – aitchkhan Oct 29 '17 at 19:12
1 Answers
0
If you use the API to look at the status, using https://api.twitter.com/1.1/statuses/show/924689808265482240.json
this is what you'll see
"text": "This is what I do for fun now https:\/\/t.co\/VNEAbw4YRC",
The user has sent a Tweet containing a link. Where does t.co/VNEAbw4YRC point to?
https://twitter.com/DepressedDarth/status/879169042426318848/video/1
So, here's what the user has done.
- Post a video to Twitter - in this case, in June 2017.
- Wait several months.
- Copy the video URL of the Tweet - add
/video/1
to it. - Post a new Tweet and include the video URL of the old Tweet.
Twitter will then render the Tweet with a link back to the original user who posted the video. I think they do this to prevent people just linking to a different user's video and then claiming it for themselves.

Terence Eden
- 14,034
- 3
- 48
- 89
-
Thanks, that's exactly what i was looking for, i really appreciate your help. – Amir Khan Oct 30 '17 at 12:22