엣지 개발자 플랫폼
  • 엣지 이미지 렌더링
    • 제품 프로필
    • 빠른 시작
    • 개발 가이드
      • 개요
      • 서명 URL
      • API를 통해 생성
    • 오픈 API
      • 개요
      • API 개요
      • 인터페이스 목록
        • 계정 인증
        • 템플릿 목록 가져오기
        • 템플릿 예시 보기
        • 이미지 서명 URL 받기
    • 일반적인 문제
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

이미지 서명 URL 받기

Interface description

Request Domain: image.edgeone.app.
Dynamically generate a signed URL for a new image under a specified template by setting parameter variables of the user account.
Note:
1. All interfaces require ApiKey + UserId for API authentication. The API Key is your private key. Please avoid leaking the API Key when invoking the API.
2. The Params field in the request parameters needs to be formatted in JSON according to actual needs. Only key-value pairs within template configuration parameters are allowed. You can pass fewer key-values, but you cannot pass key-values outside the template configuration parameters.
3. The RequestId in the response can be used for tracing and troubleshooting issues.

URL Path

/api/v1/GetTemplateSignedUrl

Request method

POST

Request headers

Content-Type: application/json

Request parameters

Parameter Name
Type
Required
Description
ApiKey
string
Yes
User's `ApiKey`
UserId
string
Yes
User ID
Id
string
Yes
Template ID
Params
string
Yes
Template Parameters

Response data type

JSON

Sample response

{
"code": 0,
"data": {
"Response": {
"SignedUrl": "********"
}
},
"message": "ok",
"requestId": "612d593d-xxxx-xxxx-xxxx-xxxx"
}

Field description

code (int): Response status code, 0 indicates success.
data (object): Object containing the actual response data.
Response (object): Actual business response data.
SignedUrl (string): Template signature URL.
message (string): Response message.
requestId (string): Request ID.