Compare commits
No commits in common. "1d2ea468b60e08f1ee50e88abe3a4317c8d797cb" and "e943c10c2b386a06929515e6d34ad41d356be4f8" have entirely different histories.
1d2ea468b6
...
e943c10c2b
2 changed files with 7 additions and 18 deletions
1
main.go
1
main.go
|
@ -182,6 +182,7 @@ func main() {
|
|||
http.HandleFunc("/copiar", func(w http.ResponseWriter, r *http.Request) {
|
||||
asset, err := getRandomOpenSeaAsset()
|
||||
if err != nil {
|
||||
log.Println("Error hablandole a OpenSea:", err)
|
||||
internalError(w, "Error hablandole a OpenSea.")
|
||||
return
|
||||
}
|
||||
|
|
24
opensea.go
24
opensea.go
|
@ -2,8 +2,6 @@ package main
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"math"
|
||||
"net/http"
|
||||
"strconv"
|
||||
|
@ -59,25 +57,15 @@ func GetAssets() (Assets, error) {
|
|||
} `json:"assets"`
|
||||
}{}
|
||||
assets := Assets{}
|
||||
req, err := http.NewRequest("GET", "https://api.opensea.io/api/v1/assets"+
|
||||
"?order_direction=desc"+
|
||||
"&offset=0"+
|
||||
"&limit=20"+
|
||||
"&order_by=sale_date", nil)
|
||||
res, err := http.DefaultClient.Get("https://api.opensea.io/api/v1/assets" +
|
||||
"?order_direction=desc" +
|
||||
"&offset=0" +
|
||||
"&limit=50" +
|
||||
"&order_by=sale_date")
|
||||
if err != nil {
|
||||
return assets, err
|
||||
}
|
||||
req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36")
|
||||
res, err := http.DefaultClient.Do(req)
|
||||
if err != nil {
|
||||
return assets, err
|
||||
}
|
||||
bytes, err := ioutil.ReadAll(res.Body)
|
||||
log.Println(string(bytes))
|
||||
if err != nil {
|
||||
return assets, err
|
||||
}
|
||||
err = json.Unmarshal(bytes, &parsed)
|
||||
err = json.NewDecoder(res.Body).Decode(&parsed)
|
||||
if err != nil {
|
||||
return assets, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue