go-twitch/api/users/unblock_user.go

37 lines
877 B
Go
Raw Normal View History

2024-03-03 18:34:26 -05:00
package users
import (
"context"
"fmt"
2024-03-03 18:34:26 -05:00
"net/http"
"net/url"
"go.fifitido.net/twitch/api/endpoint"
2024-03-03 18:34:26 -05:00
)
// Removes the user from the broadcasters list of blocked users.
// The user ID in the OAuth token identifies the broadcaster whos removing the block.
//
// Requires a user access token that includes the user:manage:blocked_users scope.
func (u *Users) UnblockUser(ctx context.Context, targetUserID string) error {
v := url.Values{"target_user_id": {targetUserID}}
2024-03-03 18:34:26 -05:00
req, err := http.NewRequestWithContext(ctx, http.MethodDelete, endpoint.Make(u.baseUrl, "users/blocks", v), nil)
2024-03-03 18:34:26 -05:00
if err != nil {
return err
}
res, err := u.client.Do(req)
if err != nil {
return err
}
defer res.Body.Close()
statusOK := res.StatusCode >= 200 && res.StatusCode < 300
if !statusOK {
return fmt.Errorf("failed to unblock user (%d)", res.StatusCode)
}
2024-03-03 18:34:26 -05:00
return nil
}