telegraph/get_page.go

27 lines
567 B
Go

package telegraph
import (
"strconv"
json "github.com/pquerna/ffjson/ffjson"
http "github.com/valyala/fasthttp"
)
// GetPage get a Telegraph page. Returns a Page object on success.
func GetPage(path string, returnContent bool) (*Page, error) {
args := http.AcquireArgs()
// If true, content field will be returned in Page object.
args.Add("return_content", strconv.FormatBool(returnContent))
body, err := request("getPage", path, args)
if err != nil {
return nil, err
}
var resp Page
err = json.Unmarshal(*body.Result, &resp)
return &resp, err
}