Just noticed a spike of visitors following a t.co/LINKHERE a link re-written by twitter. Is there a way to track back to the twitter message that contained the link, if you know the link?
相关问题
- Rails how to handle error and exceptions in model
- CORS issue with Twitter api calls in Webpack dev s
- Twitter sign in crashes with TWTRInvalidInitializa
- Accessing Twitter through Javascript
- Swift 3: How to reverse a transparent Navigation B
相关文章
- is there a callback option with twitter's “fol
- Twitter name length in DB
- Twitter oauth refresh token
- Login with Twitter on iOS
- linqtotwitter - grab the saved credentials
- Getting the location using Tweepy
- Making any tweet favourite through iOS 5 twitter A
- LinqToTwitter - IsAuthorized always returns false
You can do this using twitter API 1.1. The easiest way is to use the api is through the twitter API console. Here are the steps:
Goto https://dev.twitter.com/rest/tools/console
Select
https://api.twitter.com/1.1
from theService
dropdown menu.Select
OAuth 1
from theAuthentication
dropdown menu and authorize with your twitter account.Choose
GET
/search/tweets.json
api.Type the t.co link (e.g.
https://t.co/w6iqrcuZMA
) inq
query parameter (Try both http and https links. In my case the http link returned no record while https link returned some records). All the search results will be returned in json format.Now to open the actual tweet use this link (fill the placeholders of course):
https://twitter.com/{user.screen_name}/status/{id_str}
t.co links do show up in search, so if you're curious, you have about a week to find them before they get dropped from the search index.
For example: http://search.twitter.com/search.json?q=https:%2F%2Ft.co%2FGJMsIcM6
Returns:
You'll see that search returns retweets as well.
Here’s the quick and easy way:
Service: “api.twitter.com/1.1”
Authentication: OAuth 1, then log in if you need to
Make sure GET is selected and paste
https://api.twitter.com/1.1/search/tweets.json?q=http%3A%2F%2Ft.co%2F{**SUFFIX**}
into the Request URL box.Replace
**SUFFIX**
with the t.co URL suffix. So if the URL you’re searching for ist.co/**N2ul8FFCxu**
, the link you pasted should look like this:https://api.twitter.com/1.1/search/tweets.json?q=http%3A%2F%2Ft.co%2F{**N2ul8FFCxu**}
Click Send
Open a new tab and paste
twitter.com/**SCREEN_NAME**/status/**ID_STR**
into the address barReplace
**SCREEN_NAME**
and**ID_STR**
with info from Response. Like this:twitter.com/**twitter**/status/**526534593826938881**
The standard twitter search will work for a few days.
For older t.co links, you could try searching with find-tco.appspot.com.