51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
|
package gueststar
|
|||
|
|
|||
|
import (
|
|||
|
"context"
|
|||
|
"encoding/json"
|
|||
|
"net/http"
|
|||
|
"net/url"
|
|||
|
|
|||
|
"github.com/google/go-querystring/query"
|
|||
|
)
|
|||
|
|
|||
|
type GetChannelGuestStarSettingsParams struct {
|
|||
|
// The ID of the broadcaster you want to get guest star settings for.
|
|||
|
BroadcasterID string `url:"broadcaster_id"`
|
|||
|
|
|||
|
// The ID of the broadcaster or a user that has permission to moderate the broadcaster’s chat room.
|
|||
|
// This ID must match the user ID in the user access token.
|
|||
|
ModeratorID string `url:"moderator_id"`
|
|||
|
}
|
|||
|
|
|||
|
type GetChannelGuestStarSettingsResponse struct {
|
|||
|
Data []ChannelSettings `json:"data"`
|
|||
|
}
|
|||
|
|
|||
|
// Gets the channel settings for configuration of the Guest Star feature for a particular host.
|
|||
|
//
|
|||
|
// Query parameter moderator_id must match the user_id in the User-Access token
|
|||
|
// Requires OAuth Scope: channel:read:guest_star, channel:manage:guest_star, moderator:read:guest_star or moderator:manage:guest_star
|
|||
|
func (g *GuestStar) GetChannelGuestStarSettings(ctx context.Context, params *GetChannelGuestStarSettingsParams) (*GetChannelGuestStarSettingsResponse, error) {
|
|||
|
v, _ := query.Values(params)
|
|||
|
endpoint := g.baseUrl.ResolveReference(&url.URL{Path: "guest_star/channel_settings", RawQuery: v.Encode()})
|
|||
|
|
|||
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, endpoint.String(), nil)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
|
|||
|
res, err := g.client.Do(req)
|
|||
|
if err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
defer res.Body.Close()
|
|||
|
|
|||
|
var data GetChannelGuestStarSettingsResponse
|
|||
|
if err := json.NewDecoder(res.Body).Decode(&data); err != nil {
|
|||
|
return nil, err
|
|||
|
}
|
|||
|
|
|||
|
return &data, nil
|
|||
|
}
|