This method sets the access token to be used for the API. Args: token (str): access token to be used for the API
(self, token: str)
| 73 | return headers |
| 74 | |
| 75 | def set_access_token(self, token: str): |
| 76 | """This method sets the access token to be used for the API. |
| 77 | Args: |
| 78 | token (str): access token to be used for the API |
| 79 | """ |
| 80 | self.access_token = token |
| 81 | |
| 82 | def check_auth(self): |
| 83 | """ |
no outgoing calls