mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
28 lines
485 B
Go
28 lines
485 B
Go
|
package ivr
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type ivrIDByUsernameResponse struct {
|
||
|
ID string `json:"id"`
|
||
|
}
|
||
|
|
||
|
func IDByUsername(username string) string {
|
||
|
baseUrl := "https://api.ivr.fi/v2/twitch/user?login="
|
||
|
|
||
|
resp, err := http.Get(fmt.Sprintf("%s%s", baseUrl, username))
|
||
|
if err != nil {
|
||
|
return "xd"
|
||
|
}
|
||
|
|
||
|
defer resp.Body.Close()
|
||
|
|
||
|
responseList := make([]ivrIDByUsernameResponse, 0)
|
||
|
_ = json.NewDecoder(resp.Body).Decode(&responseList)
|
||
|
|
||
|
return responseList[0].ID
|
||
|
}
|