mapillary / mapillary-python-sdk

A Python 3 library built on the Mapillary API v4 to facilitate retrieving and working with Mapillary data.
MIT License
39 stars 15 forks source link

[Requirements] 1. Set Access Token #12

Closed Rubix982 closed 3 years ago

Rubix982 commented 3 years ago

Is your feature request related to a problem? Please describe. This issue deals with the 1st requirement from the PRD regarding setting the token for the user session

Describe the solution you'd like

The solutions available are,

  1. A function allowing the user to set an access token for the session, which they can create at mapillary.com/developer
  2. Takes token as an argument and sets a global variable used by other functions making API requests

Describe alternatives you've considered NA

Additional context Each API request requires a token, so we set the token one time, then it can be reused by all other functions.

Rubix982 commented 3 years ago

Solved with #30