This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
struct Movie : Codable, Hashable { | |
// ... | |
} | |
struct MovieResults : Codable, Hashable { | |
let results: [Movie] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
/* | |
WHY YOURS WASN'T WORKING | |
Line 320: Your URL is incorrect, it's missing the search in /1.0[/search/]setlists | |
Line 332: Setlist is not what is returned by the response (more below) | |
You can see that the response is the root dict and *setlist* is actually a key/value within. | |
- response | |
- setlist |
NewerOlder