-
Notifications
You must be signed in to change notification settings - Fork 16
2.5.5 Recherche par acteur
Vincent Séguin edited this page Jun 26, 2015
·
1 revision
Permet de rechercher dans la base de données d'acteurs d'itunes.
Token d'authentification nécessaire
Paramètres obligatoires
q
est le paramètre de recherche dans l'URL.
Par exemple pour rechercher pour Brad Pitt
l'URL sera /search/actors?q=brad%20pitt
.
Paramètres facultatifs
limit
donne le nombre de résultats maximums voulu. (Valeur par défault de 10)
Par exemple pour rechercher pour Brad Pitt
et obtenir maximum 20 résultats l'URL sera /search?q=brad%20pitt&limit=20
.
La requête doit être URL encodée (Comment URL encoder en JavaScript)
{
"resultCount": 1,
"results": [
{
"wrapperType": "artist",
"artistType": "Movie Artist",
"artistName": "Brad Pitt",
"artistLinkUrl": "https://itunes.apple.com/us/artist/brad-pitt/id272994458?uo=4",
"artistId": 272994458,
"primaryGenreName": "Drama",
"primaryGenreId": 4406,
"radioStationUrl": "https://itunes.apple.com/station/idra.272994458"
}
]
}