Reputation: 345
I want to have my PHP code to pull a file from Google Drive. If I do it without authentication, it returns: (403) Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.
Looking up authentication methods, authentication requires redirection or user login. I just want the server to acquire the authentication code itself without user prompt or redirecting.
What method can do this? Will someone please provide a guide and/or examples for the method? Thanks.
Upvotes: 0
Views: 91
Reputation: 567
You should create a service account.
https://developers.google.com/drive/web/delegation
Upvotes: 1