-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -298,14 +298,23 @@ you add the correct scopes for the APIs you want to access: | |
Advanced Customization | ||
====================== | ||
|
||
Though the ``google-cloud-python`` library defaults to using `google-auth`_ | ||
to sign requests and ``httplib2`` for sending requests, | ||
it is not a strict requirement. | ||
.. warning:: | ||
|
||
The google-cloud developers want to improve our HTTP handling to | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
lukesneeringer
Contributor
|
||
support more situations more easily, and use current tooling. | ||
|
||
In order to allow this, this particular mechanism may have to be altered | ||
in a backwards-compatible way. Therefore, the following section should | ||
be considered "private API" that is subject to change. | ||
|
||
Though the ``google-cloud-python`` library uses `google-auth`_ to sign | ||
requests and ``httplib2`` for sending requests. | ||
This comment has been minimized.
Sorry, something went wrong.
dhermes
Contributor
|
||
|
||
.. _google-auth: http://google-auth.readthedocs.io/en/stable/ | ||
|
||
The :class:`Client <google.cloud.client.Client>` constructor accepts an optional | ||
``_http`` argument in place of a ``credentials`` object. | ||
This is not a stirct requirement: | ||
This comment has been minimized.
Sorry, something went wrong. |
||
The :class:`Client <google.cloud.client.Client>` constructor accepts an | ||
optional ``_http`` argument in place of a ``credentials`` object. | ||
If passed, all HTTP requests made by the client will use your | ||
custom HTTP object. | ||
|
||
|
s/google-cloud/
google-cloud-python
?