camera.uploadFile

앱은 이 명령어를 카메라에 실행하여 이미지 업로드를 시작하거나 카메라에서 서버로 직접 전송하는 것입니다. 카메라는 포함된 매개변수를 사용하여 HTTP POST 요청을 형성합니다. 업로드할 파일은 fileUrl 파일을 올바른 값으로 uploadUrl에 승인됩니다.accessToken 이 명령어는 API 수준에서 관련이 있으며 직접 업로드

컴퓨터 명령줄에서 다음과 같이 이를 수행할 수 있습니다.

curl -X post -H "Authorization: Bearer accessToken" -T fileUrl uploadUrl

매개변수

  • fileUrl:: 서버에 업로드할 파일의 URL입니다.
  • uploadUrl: 파일을 업로드할 위치를 나타내는 문자열입니다.
  • accessToken: 다음을 위한 인증 정보가 포함된 토큰: 있습니다. 이는 앱에서 획득되어 카메라로 전송됩니다.

결과

  • 이 명령어는 결과를 반환하지 않습니다.

오류

  • missingParameter: 일부 매개변수(예: fileUrl)가 누락되었습니다.
  • invalidParameterName: 하나 이상의 입력 매개변수 이름이 인식할 수 없습니다.
  • invalidParameterValue: 입력 매개변수 이름이 인식됨 하나 이상의 전달된 값이 잘못되었습니다. 예를 들어 fileUrl가 존재하지 않습니다.
  • uploadError: 카메라를 업로드할 수 없습니다.
명령어 I/O
명령어 입력
{
"parameters": {
"fileUrl": "URL of the file.",
"uploadUrl": "A string representing where to upload the file.",
"accessToken": "A token containing the authentication information."
}
}
명령어 결과
none
명령어 출력 (오류)
{
"error": {
"code": "uploadError",
"message": "Camera failed to upload the file."
}
}