Bladeren bron

由廷诚发起的CLOUDPHOTO SDK自动发布, 版本号:1.8.3

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 7 jaren geleden
bovenliggende
commit
013809382b

+ 5 - 0
ChangeLog.txt

@@ -1,3 +1,8 @@
+2018-04-17 Version: 1.8.3
+1, EditPhotos add input param TakenAt
+2, add FetchMomentPhotos
+3, ListAlbums add return param Remark
+
 2018-04-16 Version: 1.8.2
 1, Release go sdk
 

+ 114 - 0
services/cloudphoto/fetch_moment_photos.go

@@ -0,0 +1,114 @@
+package cloudphoto
+
+//Licensed under the Apache License, Version 2.0 (the "License");
+//you may not use this file except in compliance with the License.
+//You may obtain a copy of the License at
+//
+//http://www.apache.org/licenses/LICENSE-2.0
+//
+//Unless required by applicable law or agreed to in writing, software
+//distributed under the License is distributed on an "AS IS" BASIS,
+//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//See the License for the specific language governing permissions and
+//limitations under the License.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+import (
+	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
+	"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
+)
+
+// FetchMomentPhotos invokes the cloudphoto.FetchMomentPhotos API synchronously
+// api document: https://help.aliyun.com/api/cloudphoto/fetchmomentphotos.html
+func (client *Client) FetchMomentPhotos(request *FetchMomentPhotosRequest) (response *FetchMomentPhotosResponse, err error) {
+	response = CreateFetchMomentPhotosResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// FetchMomentPhotosWithChan invokes the cloudphoto.FetchMomentPhotos API asynchronously
+// api document: https://help.aliyun.com/api/cloudphoto/fetchmomentphotos.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) FetchMomentPhotosWithChan(request *FetchMomentPhotosRequest) (<-chan *FetchMomentPhotosResponse, <-chan error) {
+	responseChan := make(chan *FetchMomentPhotosResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.FetchMomentPhotos(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// FetchMomentPhotosWithCallback invokes the cloudphoto.FetchMomentPhotos API asynchronously
+// api document: https://help.aliyun.com/api/cloudphoto/fetchmomentphotos.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) FetchMomentPhotosWithCallback(request *FetchMomentPhotosRequest, callback func(response *FetchMomentPhotosResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *FetchMomentPhotosResponse
+		var err error
+		defer close(result)
+		response, err = client.FetchMomentPhotos(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// FetchMomentPhotosRequest is the request struct for api FetchMomentPhotos
+type FetchMomentPhotosRequest struct {
+	*requests.RpcRequest
+	MomentId  requests.Integer `position:"Query" name:"MomentId"`
+	OrderBy   string           `position:"Query" name:"OrderBy"`
+	Order     string           `position:"Query" name:"Order"`
+	Size      requests.Integer `position:"Query" name:"Size"`
+	Page      requests.Integer `position:"Query" name:"Page"`
+	StoreName string           `position:"Query" name:"StoreName"`
+	LibraryId string           `position:"Query" name:"LibraryId"`
+}
+
+// FetchMomentPhotosResponse is the response struct for api FetchMomentPhotos
+type FetchMomentPhotosResponse struct {
+	*responses.BaseResponse
+	Code       string  `json:"Code" xml:"Code"`
+	Message    string  `json:"Message" xml:"Message"`
+	TotalCount int     `json:"TotalCount" xml:"TotalCount"`
+	RequestId  string  `json:"RequestId" xml:"RequestId"`
+	Action     string  `json:"Action" xml:"Action"`
+	Photos     []Photo `json:"Photos" xml:"Photos"`
+}
+
+// CreateFetchMomentPhotosRequest creates a request to invoke FetchMomentPhotos API
+func CreateFetchMomentPhotosRequest() (request *FetchMomentPhotosRequest) {
+	request = &FetchMomentPhotosRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("CloudPhoto", "2017-07-11", "FetchMomentPhotos", "cloudphoto", "openAPI")
+	return
+}
+
+// CreateFetchMomentPhotosResponse creates a response to parse from FetchMomentPhotos response
+func CreateFetchMomentPhotosResponse() (response *FetchMomentPhotosResponse) {
+	response = &FetchMomentPhotosResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 1 - 1
services/cloudphoto/struct_photo.go

@@ -24,8 +24,8 @@ type Photo struct {
 	Remark          string `json:"Remark" xml:"Remark"`
 	Like            int    `json:"Like" xml:"Like"`
 	Id              int    `json:"Id" xml:"Id"`
-	ShareExpireTime int    `json:"ShareExpireTime" xml:"ShareExpireTime"`
 	InactiveTime    int    `json:"InactiveTime" xml:"InactiveTime"`
+	ShareExpireTime int    `json:"ShareExpireTime" xml:"ShareExpireTime"`
 	Location        string `json:"Location" xml:"Location"`
 	Height          int    `json:"Height" xml:"Height"`
 	IsVideo         bool   `json:"IsVideo" xml:"IsVideo"`

+ 21 - 0
services/cloudphoto/struct_photos_in_fetch_moment_photos.go

@@ -0,0 +1,21 @@
+package cloudphoto
+
+//Licensed under the Apache License, Version 2.0 (the "License");
+//you may not use this file except in compliance with the License.
+//You may obtain a copy of the License at
+//
+//http://www.apache.org/licenses/LICENSE-2.0
+//
+//Unless required by applicable law or agreed to in writing, software
+//distributed under the License is distributed on an "AS IS" BASIS,
+//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//See the License for the specific language governing permissions and
+//limitations under the License.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+// PhotosInFetchMomentPhotos is a nested struct in cloudphoto response
+type PhotosInFetchMomentPhotos struct {
+	Photo []Photo `json:"Photo" xml:"Photo"`
+}