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 DefaultTabs attribute. The attribute must be a list of records. Each record must contain the attributes arguments and title. The title can, and should, be localized by making it into a record with attributes for each language (currently en, fr and es).

I have tried the following:

  1. Adding this snippet to my manifest.json file:

    "DefaultTabs": [{
      arguments: [],
      title: {"en": "På TV4"}
    }
    ]
    
  2. Quitting the Spotify application and reloading it.

  3. Load my app by entering it's address spotify:app:name in the address field.

Here I expected to see the tabs loaded, but it wasn't. Any help with the correct syntax would be appreciated.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

I had a few issues at first too, but the following snippet works for me:

"DefaultTabs": [
    {
        "arguments": "test",
        "title":  { "en": "test" }
    },
    {
        "arguments": "test2",
        "title": { "en": "test2" }
    }
]

I think you are probably missing the arguments.

Also check out the Kitchensink demo app and sourcecode in GitHub: https://github.com/ptrwtts/kitchensink

link|improve this answer
Thanks! Works like a charm. – moonhouse Jan 23 at 22:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.