Update medium_client.go

This commit is contained in:
mycodedoesnotcompile2 2025-12-13 12:31:48 +00:00 committed by GitHub
parent 6c9ba437a8
commit d055ff6c72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,13 +38,14 @@ func PostData(postId string) (*entities.MediumResponse, error) {
payload := strings.NewReader(fmt.Sprintf("{\"query\":\"query {\\n post(id: \\\"%s\\\") {\\n title\\n createdAt\\n creator {\\n id\\n name\\n }\\n content {\\n bodyModel {\\n paragraphs {\\n name\\n text\\n type\\n href\\n layout\\n markups {\\n title\\n type\\n href\\n userId\\n start\\n end\\n anchorType\\n }\\n iframe {\\n mediaResource {\\n href\\n iframeSrc\\n iframeWidth\\n iframeHeight\\n }\\n }\\n metadata {\\n id\\n originalWidth\\n originalHeight\\n }\\n }\\n }\\n }\\n }\\n }\",\"variables\":{}}", postId))
var client *http.Client
if config.Conf.Proxy != "" {
proxyURL, err := url.Parse(config.Conf.Proxy)
if err != nil {
panic(err)
}
client := &http.Client{
client = &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyURL(proxyURL),
TLSClientConfig: &tls.Config{
@ -54,7 +55,7 @@ func PostData(postId string) (*entities.MediumResponse, error) {
}
log.Printf("Using proxy: %s", config.Conf.Proxy)
} else {
client := &http.Client{}
client = &http.Client{}
}
req, err := http.NewRequest(method, urlreq, payload)