This commit is contained in:
Jifffffy 2023-05-29 10:08:22 +08:00 committed by GitHub
commit 1b80a05141
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,20 +90,18 @@ defmodule LiveBeats.Github do
defp secret, do: LiveBeats.config([:github, :client_secret])
defp http(host, method, path, query, headers, body \\ "") do
{:ok, conn} = Mint.HTTP.connect(:https, host, 443)
path = path <> "?" <> URI.encode_query([{:client_id, client_id()} | query])
{:ok, conn, ref} =
Mint.HTTP.request(
conn,
method,
path,
headers,
body
)
receive_resp(conn, ref, nil, nil, false)
with {:ok, conn} <- Mint.HTTP.connect(:https, host, 443),
{:ok, conn, ref} <-
Mint.HTTP.request(
conn,
method,
path,
headers,
body
),
do: receive_resp(conn, ref, nil, nil, false)
end
defp receive_resp(conn, ref, status, data, done?) do