Reputation: 1
I've public files in my google drive account. I want to make a desktop application (.NET) for other users and this application needs read-only access to those public files in my account. Is this possible with google drive?
i checked the documentation but i found only the following:
Can someone put me in the right direction?
Upvotes: 0
Views: 123
Reputation: 13528
You would use OAuth 2.0 authentication against your account and a scope of:
https://www.googleapis.com/auth/drive.readonly
so that your app has read-only access to your Drive files.
Upvotes: 1