Files
m3o-go/examples/url/list/listYourShortenedUrls.go
2021-10-29 10:44:29 +00:00

16 lines
295 B
Go
Executable File

package example
import (
"fmt"
"os"
"go.m3o.com/url"
)
// List information on all the shortened URLs that you have created
func ListYourShortenedUrls() {
urlService := url.NewUrlService(os.Getenv("M3O_API_TOKEN"))
rsp, err := urlService.List(&url.ListRequest{})
fmt.Println(rsp, err)
}