update readme, started movie endpoints

This commit is contained in:
Blake Joynes
2021-05-15 11:44:02 -04:00
parent 92f84a31f3
commit 9937277752
8 changed files with 128 additions and 5 deletions

View File

@@ -4,4 +4,14 @@
Typescript library wrapper of [TMDB API](https://developers.themoviedb.org/) v3 .
This uses authentication token for requests so there is no need to append api key to the url.
This uses new jwt authentication token for requests so there is no need to append api key to the url.
Once you have registered for access to the api you can use your access token as follows:
`import TMDB from 'tmdb-ts';`
`const tmdb = new TMDB(accessToken);`
`tmdb.search.movies({query: 'American Pie'})`