Conception - Recommandation intelligente de films: Difference between revisions
Jump to navigation
Jump to search
(Created page with "= Choix des langages de programmation = = Choix technologiques = = API en back-end = {| class="wikitable left" width="100%" |+ align="left" | Routes |- ! scope=col width="5...") |
No edit summary |
||
| Line 9: | Line 9: | ||
|- |
|- |
||
! scope=col width="5%" | Requête |
! scope=col width="5%" | Requête |
||
! scope=col width=" |
! scope=col width="25%" | Route |
||
! scope=col | Description |
! scope=col | Description |
||
! scope=col width="15%" | Permission |
! scope=col width="15%" | Permission |
||
Revision as of 07:50, 13 March 2017
Choix des langages de programmation
Choix technologiques
API en back-end
| Requête | Route | Description | Permission |
|---|---|---|---|
| POST | /auth/signup | ... | |
| POST | /auth/login | ... | |
| /auth/logout | ... | ||
| POST | /api/updateMovies | ... | L'utilisateur doit être connecté |
| GET | /api/likedMovies/<string:opinion> | ... | L'utilisateur doit être connecté |
| POST | /api/likedMovie/<int:idMovie>/<int:isLiked> | ... | L'utilisateur doit être connecté |
| PUT | /api/likedMovie/<int:idMovie>/<int:isLiked> | ... | L'utilisateur doit être connecté |
| DELETE | /api/likedMovie/<int:idMovie> | ... | L'utilisateur doit être connecté |
| POST | /api/train | ... | L'utilisateur doit être connecté |
| GET | /api/prediction | ... | L'utilisateur doit être connecté |
| POST | /api/popularity | ... | L'utilisateur doit être connecté |