Skip to content
New issue

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

Dont show curl version in user agent #2654

Merged
merged 5 commits into from
May 25, 2020
Merged

Conversation

Nyholm
Copy link
Member

@Nyholm Nyholm commented May 23, 2020

Don't use any fancy user agent. There is no reason to tell the world about what CURL version you have installed. If a user finds this important, they can add it themselves.

This will fix #2635, fix #2642

src/Utils.php Outdated
}

return $defaultAgent;
return 'GuzzleHttp/Guzzle';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be GuzzleHttp only as the part behind the slash is specified as a version in the corresponding RFC.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It doesn't matter too much, does it?

I named the guzzle 7 to "Guzzle", and now there is a version. =)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Depends as always 😁. The RFC defines the version as a Token. And the agent is a token too. So it is may be conform but unexpected as the examples show numeric version strings.

But what the RFC clearly states is that the version part itself is optional.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But what the RFC clearly states is that the version part itself is optional.

Okey, I've not read the RFC. Im happy to drop this.

Thank you

@GrahamCampbell
Copy link
Member

Maybe include the major version from the client interface as the version?

src/Utils.php Outdated Show resolved Hide resolved
@Nyholm Nyholm merged commit 41d72a8 into guzzle:master May 25, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Request to an external API using Guzzle randomly returns Server error: 504 but it works using cURL
4 participants