1

我已经搜索了很多关于此的主题,但无法弄清楚。我下载了spotify提供的测试应用,位于:https ://github.com/spotify/apps-tutorial ://github.com/spotify/apps-tutorial以创建我的第一个 Spotify 应用程序。

我已经创建了我的文件夹 /[home_directory]/Spotify/app/api-tutorial

里面的文件是:在此处输入图像描述

清单的内容是:

{
    "AppDescription": {
        "en": "A tutorial app for Spotify Apps API"
    },
    "AppIcon": {
        "36x18": "tutorial.png"
    },
    "AppName": {
        "en": "Spotify Apps API Tutorial"
    },
    "BundleIdentifier": "api-tutorial",
    "BundleType": "Application",
    "BundleVersion": "0.1",
    "DefaultTabs": [
        {
            "arguments": "index",
            "title": {
                "en": "Home"
            }
        },
        {
            "arguments": "tabs",
            "title": {
                "en": "How to use tabs"
            }
        }
    ],
    "Dependencies": {
      "api": "0.2.3",
      "util": "0.1.0",
      "resources": "0.2.2"
  },
    "RequiredInterface": 1,
    "RequiredPermissions": [
        "http://api.twitter.com",
        "http://o.scdn.co",
        "https://*.googleapis.com",
        "https://*.gstatic.com",
        "https://*.gmaptiles.co.kr",
        "https://earthbuilder.google.com",
        "https://earthbuilder.googleapis.com",
        "https://raw.github.com",
        "http://tile.cloudmade.com",
        "http://*.tile.cloudmade.com",
        "https://graph.facebook.com",
        "https://gist.github.com/",
        "http://search.twitter.com/",
        "http://amsterdam.last.fm",
        "http://ws.audioscrobbler.com/",
        "http://developer.echonest.com"
    ],
    "SupportedLanguages": [
        "en"
    ],
    "VendorIdentifier": "co.mager"
}

我的帐户被激活为开发人员.. 但我无法加载它: 在此处输入图像描述

任何关于我做错了什么的指导将不胜感激。

提前致谢。

4

1 回答 1

2

您将应用程序放在文件夹级别太深 - 它应该放在~/Spotify/api-tutorial.

于 2013-04-10T09:13:06.907 回答