Get Twitter Card from API

I could get the HTML markup of what is stored on Twitter ( https://dev.twitter.com/docs/cards ).

So far, I have used the TweetSharp library to get tweets from some user timeline. But, not surprisingly, because the cards are new, it is not included.

Does anyone know if it is possible to access the card (data cached by the Twitter blog) with the API?

+6
source share
1 answer

Twitter cards themselves are not displayed through the Twitter API.

What you need to do is query the specified URL and examine the <head> element to see if they have any Twitter map information.

+7
source

All Articles