我已经找到了很多关于此事的主题,但无法弄明白。 我下载了spotify提供的测试应用程序,位于:https://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"
}
我的帐户已作为开发人员激活..但我无法加载:
非常感谢任何关于我做错的指导。
提前致谢。
答案 0 :(得分:2)
您将应用程序设置为文件夹级别太深 - 它应该是~/Spotify/api-tutorial
。