Skip to content

Instantly share code, notes, and snippets.

@johnwesonga
Last active July 23, 2025 22:52
Show Gist options
  • Save johnwesonga/79703e5011e7c7cf300832e9e457ac3b to your computer and use it in GitHub Desktop.
Save johnwesonga/79703e5011e7c7cf300832e9e457ac3b to your computer and use it in GitHub Desktop.
Get specific header for HTTPoison
{_, server} = "https://github.com"
|> HTTPoison.get!
|> Map.get(:headers)
|> Enum.filter(&match?({"Server", _}, &1))
|> List.first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment