Fix readwise token
Accidentally shipped this hard-coded. Token is long-size revoked, but obviously hard to use this way!
This commit is contained in:
parent
720061185c
commit
18e89bee3d
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class ReadwiseReaderAPI:
|
|||
def get_archive(self):
|
||||
response = requests.get(
|
||||
url="https://readwise.io/api/v3/list/",
|
||||
headers={"Authorization": "Token s71gNtiNDWquEvlJFFUyDU10ao8fn99lGyNryvyllQcDSnrd7X"},
|
||||
headers={"Authorization": f"Token {self.api_token}"},
|
||||
params={
|
||||
"location": "archive",
|
||||
"pageCursor": self.cursor,
|
||||
|
|
Loading…
Add table
Reference in a new issue