Как я могу получить доступ к mendeley API?(files.document_id) Спасибо за вашу помощь.
from mendeley import Mendeley
import requests
# I've changed the authentication details of my script (of course)
client_id = ****
client_secret = "**************"
redirect_uri = "********************"
mendeley = Mendeley(client_id, redirect_uri=redirect_uri)
auth = mendeley.start_implicit_grant_flow()
login_url = auth.get_login_url()
res = requests.post(login_url, allow_redirects=False, data={
'username': '**********',
'password': '**********'
})
auth_response = res.headers['Location']
session = auth.authenticate(auth_response)
lib = []
for f in session.files.iter():
try:
dic = {}
dic['filehash'] = f.filehash
dic['mime_type'] = f.mime_type
dic['file_name'] = f.file_name
dic['id'] = f.id
dic['size'] = f.size
dic['document_id'] = f.document_id # I can't access this one.
lib.append(dic)
except:
pass
В библиотеке должен быть список словарей.Он должен содержать информацию о «document_id» в соответствии с документацией.(https://dev.mendeley.com/methods/#files) Если я попытаюсь включить document_id, результат будет пустым.