From b7a2e8ee3073a3da200e22f07fd9d56d63673737 Mon Sep 17 00:00:00 2001 From: Artur Gubaidullin Date: Mon, 25 Nov 2024 11:39:11 +0500 Subject: [PATCH] Update building-a-login-with-github-button-with-a-github-app.md Remove unnecessary body from http get request --- .../building-a-login-with-github-button-with-a-github-app.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/content/apps/creating-github-apps/writing-code-for-a-github-app/building-a-login-with-github-button-with-a-github-app.md b/content/apps/creating-github-apps/writing-code-for-a-github-app/building-a-login-with-github-button-with-a-github-app.md index bece6a905020..0def7f49a1ef 100644 --- a/content/apps/creating-github-apps/writing-code-for-a-github-app/building-a-login-with-github-button-with-a-github-app.md +++ b/content/apps/creating-github-apps/writing-code-for-a-github-app/building-a-login-with-github-button-with-a-github-app.md @@ -340,12 +340,10 @@ def user_info(token) uri = URI("{% data variables.product.rest_url %}/user") result = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http| - body = {"access_token" => token}.to_json - auth = "Bearer #{token}" headers = {"Accept" => "application/json", "Content-Type" => "application/json", "Authorization" => auth} - http.send_request("GET", uri.path, body, headers) + http.send_request("GET", uri.path, nil, headers) end parse_response(result)