mirror of
https://codeberg.org/ultimateplayer1999/go-api-usage.git
synced 2024-11-22 17:38:22 -05:00
68 lines
1.4 KiB
Go
68 lines
1.4 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"log"
|
|
"fmt"
|
|
"os"
|
|
"io/ioutil"
|
|
|
|
"github.com/joho/godotenv"
|
|
)
|
|
|
|
type Response struct {
|
|
KeyexpireString string `json:"keyexpireString"`
|
|
ExpireDate string `json:"expireDate"`
|
|
expireEpoc int `json:"expireEpoc"`
|
|
}
|
|
|
|
func main() {
|
|
// Clear the screen
|
|
fmt.Print("\033[2J")
|
|
// Load environment variables from .env file
|
|
err := godotenv.Load()
|
|
if err != nil {
|
|
log.Fatal("Error loading .env file")
|
|
}
|
|
|
|
token := os.Getenv("TOKEN")
|
|
|
|
// Make an HTTP request to api.discord-linux.com
|
|
req, err := http.NewRequest("GET", "https://api.discord-linux.com/key-time", nil)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
req.Header.Set("Accept", "application/json")
|
|
req.Header.Add("Content-Type", "Application/json")
|
|
req.Header.Add("x-discord-linux-auth", token)
|
|
|
|
client := http.Client{}
|
|
resp, err := client.Do(req)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
// Get the statuscode of the endpoint
|
|
fmt.Println("Status code: ", resp.StatusCode)
|
|
|
|
// Read the contents of the body
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Unmarshal the JSON into a Response struct
|
|
var r Response
|
|
err = json.Unmarshal(body, &r)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Print the response
|
|
fmt.Println("")
|
|
fmt.Println("Key expire fulldate: ", r.KeyexpireString)
|
|
fmt.Println("Key expire date: ", r.ExpireDate)
|
|
fmt.Println("")
|
|
} |