The integration guidlines for the Spotify Apps API mentions DefaultTabs and how it should be expressed in the manifest.json file to achieve tabbing in your Spotify app. Unfortunately I have problem getting this to work and the app that it refers to (Tabs, with the URI spotify:app:tabs) for example doesn't exist in my preview build of the Spotify application.
The application can specify what tabs it wants in the manifest file, in the
DefaultTabsattribute. The attribute must be a list of records. Each record must contain the attributesargumentsandtitle. The title can, and should, be localized by making it into a record with attributes for each language (currentlyen,frandes).
I have tried the following:
Adding this snippet to my
manifest.jsonfile:"DefaultTabs": [{ arguments: [], title: {"en": "På TV4"} } ]Quitting the Spotify application and reloading it.
Load my app by entering it's address
spotify:app:namein the address field.
Here I expected to see the tabs loaded, but it wasn't. Any help with the correct syntax would be appreciated.