We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this looks like an environment variable...
_Configure authentication with service account like following:
For example,
GDRIVE_SERVICE_ACCOUNT_CREDENTIALS_JSON = '{ "type": "service_account", "project_id": "project_id here", "private_key_id": "private_key_id here", "private_key": "private_key here", "client_email": "client_email here", "client_id": "client_id here", "auth_uri": "auth_uri here", "token_uri": "token_uri here", "auth_provider_x509_cert_url": "auth_provider_x509_cert_url here", "client_x509_cert_url": "client_x509_cert_url here" }'_
this is what gdrive_exporter.py is looking for...
@classmethod def from_crawler(cls, crawler, uri, *, feed_options=None): return cls( uri, crawler.settings.get("**GDRIVE_SERVICE_ACCOUNT_CREDENTIALS**"), feed_options=feed_options, )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this looks like an environment variable...
_Configure authentication with service account like following:
For example,
GDRIVE_SERVICE_ACCOUNT_CREDENTIALS_JSON = '{ "type": "service_account", "project_id": "project_id here", "private_key_id": "private_key_id here", "private_key": "private_key here", "client_email": "client_email here", "client_id": "client_id here", "auth_uri": "auth_uri here", "token_uri": "token_uri here", "auth_provider_x509_cert_url": "auth_provider_x509_cert_url here", "client_x509_cert_url": "client_x509_cert_url here" }'_
this is what gdrive_exporter.py is looking for...
The text was updated successfully, but these errors were encountered: