views:

41

answers:

1

I have a large website at www.mydomain.com. There are 1000 new documents per month and 100 new users per week lets say. I need to be able to programmatically do the following:

  • user goes to www.mydomain.com/documents
  • user sees list of all documents they have access to (not ALL of the docs)

I know you can retrieve an ACL for each document individually. But is there a way to retrieve an ACL for each "user", a list of all the documents they have access to, in one HTTP request? Something like this, but for Docs (and not just for document "owners"):

Retrieving only calendars that a user owns.

I'd love to know, because it seems like I'd have to parse 10,000 document "entry" tags, find the ACL, see if user is in ACL... That seems crazy.

What am I missing?

Thanks!

+1  A: 

It looks like the API can provide you the desired list by reader or writer.

msw
there it is! thanks, I've been looking forever for that.
viatropos