Skip to content

Releases: HiWay-Media/tiktok-go-sdk

v0.2.4

29 Jul 10:34
b517af2
Compare
Choose a tag to compare

Added these methods:

	GetClientAccessTokenManagement() (*AccessTokenManagement, error)

FIX:

CodeAuthUrl() string method because it needs client_key (The unique identification key provisioned to the partner.)

v0.2.3

28 Jul 12:23
1ea9415
Compare
Choose a tag to compare

Added this method:

GetVideoList(count int64) (*VideoListResponse, error)

v0.2.2

28 Jul 09:30
e33be5c
Compare
Choose a tag to compare

Added these methods:

PostPhotoInit(title, description, privacyLevel string, photoUrls []string, photoMode string) (*PublishStatusFetchResponse, error)
 	UserInfo() (*UserInfoResponse, error)

v0.2.1

26 Jul 08:33
10248ee
Compare
Choose a tag to compare

Added these methods:

CreatorInfo() (*QueryCreatorInfoResponse, error)
PostVideoInit(title, videoUrl string, privacyLevel string) (*PublishVideoResponse, error)
PublishVideo(publishId string) (*PublishStatusFetchResponse, error)

v0.2.0

26 Jul 08:19
7e16630
Compare
Choose a tag to compare

Added these methods:

  • CreatorInfo() (*QueryCreatorInfoResponse, error)
  • PostVideoInit(title, videoUrl string, privacyLevel string) (*PublishVideoResponse, error)
  • PublishVideo(publishId string) (*PublishStatusFetchResponse, error)

v0.1.0

25 Jul 19:15
af4246d
Compare
Choose a tag to compare

Added

// Endpoint is TikTok's OAuth 2.0 endpoint.
var Endpoint = oauth2.Endpoint{
	AuthURL:  "https://www.tiktok.com/v2/auth/authorize/",
	TokenURL: "https://open.tiktokapis.com/v2/oauth/token",
}