Panky
Panky

Reputation: 169

Implement Twitter Cards in iPhone

I have integrated twitter in my iPhone app.As i am sharing audio as well ,to enhance this sharing I want to use Twitter cards in my iPhone app.

I cannot get anything more apart from the following URL : https://dev.twitter.com/docs/cards

Any sort of code lines/tutorial will help a lot

Upvotes: 4

Views: 1307

Answers (2)

David Wong
David Wong

Reputation: 10294

You need a web app to create Twitter Cards.

Twitter cards works by scanning the link that's held within the tweet. If the link leads to a website that has the correct tags Twitter will create the card.

The process you'd have to take is:

  • Upload your audio and other metadata up to a server
  • Server responds by sending you back an web link to that page
  • Server sets up the relavant tags for the player card etc.
  • Your user's phone then sends the tweet to their twitter account.

This is going to be more complicated for iOS devs who don't do much web development.

Upvotes: 4

Related Questions