-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
35 lines (35 loc) · 947 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"easie": {
"user": "",
"developer_key": "",
"url_api": "https://api.easiedata.com"
},
"spotify": {
"client_id": "",
"client_secret": "",
"track_info": ["album.id", "album.name"],
"artist_info": ["genres"]
},
"core": {
"easie_table_ref":{
"artists_top_tracks": "top_tracks",
"related_artists_top_tracks": "related_top_tracks",
"track_recomendations": "recomendations"
},
"artists_top_tracks":{
"artists_names": ["milky chance", "jack johnson"],
"markets": ["US", "BR"],
"top_tracks": 2,
},
"related_artists_top_tracks":{
"max_popularity": 65,
"top_tracks": 1,
"markets": ["US", "BR"]
},
"track_recommendations": {
"query_params": {
"market": "US"
}
}
}
}