oeysan / c2z

A Reference Manager in R
https://oeysan.github.io/c2z/
Other
9 stars 1 forks source link

Zotero Groups export local file? #1

Closed rkrug closed 1 year ago

rkrug commented 1 year ago

Hi

This package looks great for accessing Zotero.

But I am looking for a way to access Group libraries for essentially downloading them in a format, which I can use in further analysis - is this possible? I couldn't figure it out yet.

Thanks,

Rainer

oeysan commented 1 year ago

Hi,

Sorry for the late reply, I've been on vacation.

It is possible to access group libraries and export them according to the Zotero Web API Documentation.

example <- Zotero( user = FALSE, id = "4986462", api = NA, library = TRUE, export = TRUE, format = "json" ) example$results

I hope this helps!

rkrug commented 1 year ago

Thanks a lot - yes this helps.