1

When i get 'external_metadata' how can I make Spotify and iTunes links on ACRCloud metadata. How can I make a working link?

                "spotify": {
                    "track": {
                        "id": "1H8XgJUdCuG22jSVTi6nkL"
                    }
                },
                "itunes": {
                    "track": {
                        "id": 529354556
                    }
Noitidart
  • 35,443
  • 37
  • 154
  • 323

1 Answers1

2

For Spotify: You can refer to Spotify Developers (https://developer.spotify.com/) to make up the URL. So you need to put the track id at the end of this URL: https://open.spotify.com/track/{id} e.g. https://open.spotify.com/track/1H8XgJUdCuG22jSVTi6nkL

For iTunes, You can refer to iTunes Affiliate Resource (https://affiliate.itunes.apple.com/resources/documentation/apple-music-best-practices-for-app-developers/) to make up the URL.

W. Steve
  • 422
  • 2
  • 5