blob: a5f83f0c61b26a43b1f5ca37e514f822f6d963b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package api // import "github.com/SevereCloud/vksdk/v2/api"
import (
"github.com/SevereCloud/vksdk/v2/object"
)
// WidgetsGetCommentsResponse struct.
type WidgetsGetCommentsResponse struct {
Count int `json:"count"`
Posts []object.WidgetsWidgetComment `json:"posts"`
}
// WidgetsGetComments gets a list of comments for the page added through the Comments widget.
//
// https://vk.com/dev/widgets.getComments
func (vk *VK) WidgetsGetComments(params Params) (response WidgetsGetCommentsResponse, err error) {
err = vk.RequestUnmarshal("widgets.getComments", &response, params)
return
}
// WidgetsGetPagesResponse struct.
type WidgetsGetPagesResponse struct {
Count int `json:"count"`
Pages []object.WidgetsWidgetPage `json:"pages"`
}
// WidgetsGetPages gets a list of application/site pages where the Comments widget or Like widget is installed.
//
// https://vk.com/dev/widgets.getPages
func (vk *VK) WidgetsGetPages(params Params) (response WidgetsGetPagesResponse, err error) {
err = vk.RequestUnmarshal("widgets.getPages", &response, params)
return
}
|