DMM アフィリエイトAPI にアクセスするGoの実装サンプル
Fanzaの商品情報Jsonを取得して表示する
package main
import (
"crypto/tls"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"time"
)
type responsStatus struct {
Result struct {
Status int `json:"status"`
ResultCount int `json:"result_count"`
TotalCount int `json:"total_count"`
FirstPosition int `json:"first_position"`
} `json:"result"`
}
type targetService struct {
service string
floor string
}
var targetServices = []targetService{
{
service: "digital",
floor: "videoa",
},
{
service: "digital",
floor: "videoc",
},
{
service: "digital",
floor: "anime",
},
{
service: "doujin",
floor: "digital_doujin",
},
{
service: "ebook",
floor: "comic",
},
}
func main() {
url := "https://api.dmm.com/affiliate/v3/ItemList?api_id=%s&affiliate_id=%s&site=FANZA&service=%s&floor=%s&hits=%d&offset=%d>e_date=%s<e_date=%s&output=json"
const hits = 100
hc := &http.Client{
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
},
}
today := time.Now().Format("2006-01-02")
for _, ts := range targetServices {
offset := 1
for i := 1; ; i++ {
var result responsStatus
var resp *http.Response
var body []byte
for retry := 0; retry < 3; retry++ {
gteDate := today + "T00:00:00"
lteDate := today + "T23:59:59"
requestURL := fmt.Sprintf(url, "dmm_api_id", "dmm_affiliate_id", ts.service, ts.floor, hits, offset, gteDate, lteDate)
fmt.Println(requestURL)
req, _ := http.NewRequest("GET", requestURL, nil)
req.Header.Set("Content-Type", "application/json")
resp, _ = hc.Do(req)
body, _ = ioutil.ReadAll(resp.Body)
json.Unmarshal(body, &result)
if result.Result.Status != http.StatusOK {
resp.Body.Close()
continue
}
fmt.Println(result)
break
}
resp.Body.Close()
if result.Result.TotalCount > hits*i {
offset += hits
continue
}
break
}
}
}
Author And Source
この問題について(DMM アフィリエイトAPI にアクセスするGoの実装サンプル), 我々は、より多くの情報をここで見つけました https://zenn.dev/ohnishi/articles/63cb5630b452e7e23487著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol