Embed Twitter Maps on iPhone

I have a built-in twitter in my iPhone application. Since I also share sound to improve this sharing, I want to use Twitter maps in my iPhone app.

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

Any line of code / tutorial will help a lot

+4
source share
2 answers

You need a web application for creating Twitter maps.

Twitter cards work by viewing the link contained in the tweet. If the link leads to a website with the correct tags, then Twitter will create a map.

The process you need to take is:

  • Upload your audio and other metadata to the server
  • The server responds by sending you a web link to this page
  • The server sets relavant tags for the playerโ€™s card, etc.
  • The user phone then sends a tweet to their Twitter account.

This will be more difficult for iOS developers who are not involved in web development.

+4
source

All Articles