package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://external.vin.gs/api/.well-known/oauth-protected-resource/mcp"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}