gpt4 book ai didi

http - 如何使用 gorequest 发起 POST 请求

转载 作者:数据小太阳 更新时间:2023-10-29 03:29:51 28 4
gpt4 key购买 nike

Reddit 有一个 Oauth2 的 API 端点,我需要在其中使用适当的 header 和数据执行 POST 以获得访问 token 。这是我的代码:

package main

import (
"github.com/parnurzeal/gorequest"
"fmt"
)

func main() {
app_key := "K...A"
app_secret := "3...M"
ua_string := "script:bast:0.1 (by /u/a...h)"
username := "a...h"
password := "..."
r := gorequest.New().SetBasicAuth(app_key, app_secret).Set("User-Agent", ua_string)
resp, body, errs := r.Post("https://www.reddit.com/api/v1/access_token").Send(
map[string]string{
"grant_type": "password",
"username": username,
"password": password,
},
).End()
if errs != nil {
fmt.Println(errs)
}
fmt.Println(resp)
fmt.Println(resp.StatusCode)
fmt.Println(body)
}

但是它不起作用,我得到:{"message": "Too Many Requests", "error": 429}

我根本没有提出太多请求,我也遵守 API 规则。

这是我的等效 python 代码:

import requests
import requests.auth

app_key = "K...A"
app_secret = "3...M"
ua_string = "script:bast:0.1 (by /u/a...h)"
username = "a...h"
password = "..."

client_auth = requests.auth.HTTPBasicAuth(app_key, app_secret)
post_data = {"grant_type": "password", "username": username,
"password": password}
headers = {"User-Agent": ua_string}
response = requests.post("https://www.reddit.com/api/v1/access_token",
auth=client_auth, data=post_data, headers=headers)
print(response.json())

那么我的 Go 代码有什么问题?我做错了什么吗?

最佳答案

我一直在使用paw客户端,主要是因为我可以测试/调试我的请求,一旦完成,我可以获得 curlgo 代码来这样做,除了其他选项,例如这是执行通用发布请求的输出:

package main

import (
"fmt"
"io/ioutil"
"net/http"
)

func sendGetRepos() {
// Create client
client := &http.Client{}

// Create request
req, err := http.NewRequest("POST", "https://api.endpoint.tld", nil)

// Headers
req.Header.Add("Authorization", "Bearer ***** Hidden credentials *****")

// Fetch Request
resp, err := client.Do(req)

if err != nil {
fmt.Println("Failure : ", err)
}

// Read Response Body
respBody, _ := ioutil.ReadAll(resp.Body)

// Display Results
fmt.Println("response Status : ", resp.Status)
fmt.Println("response Headers : ", resp.Header)
fmt.Println("response Body : ", string(respBody))
}

关于http - 如何使用 gorequest 发起 POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42323374/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com