I am trying to use the Movie Database API to populate a simple Python data structure project for a class I am taking. I am a programming beginner, and have never tried to use an API before.
I have been supplied two things:
1) API Key (V3 Auth)
2) API Read Access Token (v4 auth)
Auth Documentation | v4 Auth Documentation
First of all, what is the difference between these two? I am able to successfully query for what I need using the API key - what would #2 be used for in an actual product?
When I go to turn in my project on GitHub, do I need to worry about the API key being visible? From my understanding, in some API's the key gives total account access, but some keys can be safely displayed on the client's end without worry.
Is this correct? What about in my case - do Movie Database API keys need to be kept secure?
How would I do so assuming I have to turn in the finished project on GitHub?