2

Is it possible to embed a Tweet / Twitter Card (https://dev.twitter.com/docs/cards/types/summary-card) natively in an iOS App? All I could find was an API that delivers the data:

https://api.twitter.com/1.1/statuses/show.json?id=210462857140252672

See https://dev.twitter.com/docs/api/1.1/get/statuses/show/%3Aid

Then I would be able to construct my own UIView representing a Twitter Card, but isn´t there something 'official' to display Twitter Cards in a more native way than HTML in apps?

Cheers, Marc

stk
  • 6,311
  • 11
  • 42
  • 58
  • No, the current API level access to Twitter in iOS does not include presentation of card objects. You'll need to roll your own as you described. – Cocoadelica May 07 '14 at 15:37

1 Answers1

1

Twitter offers an official way to display tweets natively in iOS through TwitterKit: https://dev.twitter.com/twitter-kit/ios/show-tweets

gdub
  • 793
  • 9
  • 16