我已经搜索了很多关于这方面的话题,但都搞不清楚。我下载了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"
}我的帐户已作为开发人员激活..但是我不能加载它:

任何关于我做错了什么的指导都将不胜感激。
提前谢谢。
发布于 2013-04-10 17:13:07
您将应用程序放在了一个太深的文件夹级别-它应该是~/Spotify/api-tutorial。
https://stackoverflow.com/questions/15920891
复制相似问题