You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the default setting for rfc9110_delimiter in the create_user_agent() method to True.
Note: in the docstring for user_agent in the Google api-coreClientInfo class, the api-core folks recommend but do not require the use of the format the rfc suggests (with the forward slash):
user_agent (Optional[str]): Prefix to the user agent header. This is
used to supply information such as application name or partner tool.
Recommended format: ``application-or-tool-ID/major.minor.version``.
The text was updated successfully, but these errors were encountered:
The default user-agent issued by this module is not in accordance with RFC 9110 which recommends:
product/major.minor.micro
(ie.pandas/2.0.1
).Current style:
product-x.y.z
(pandas-2.0.1
)rfc9110_delimiter
in thecreate_user_agent()
method toTrue
.Note: in the docstring for
user_agent
in the Googleapi-core
ClientInfo
class, the api-core folks recommend but do not require the use of the format the rfc suggests (with the forward slash):The text was updated successfully, but these errors were encountered: