Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Introduction

This wiki explains the URL validate and get metadata API specification.

Background

As part of upload file using Url link, there is requirement to validate the URL (youtube, google drive, azure and aws). Based on the provider of the URL we will validate the url link.

Problem Statement

As part of above requirement we are going to provide two APIs:

  • Validate URL
  • Read URL metadata

Validate URL API

POST - asset/v3/url/validate?field=<license(youtube URL link) / size(google drive, azure, aws)>

Request Header:

Authorisation: //Authorisation key
Content-Type: application/json'

Request Body

{
     "request": {
          "asset": {
               "provider": "<youtube/googledrive/azure/aws>",
               "url": "<URL LInk>"
          }
     }
}

Response Body

{
     "id": "asset.url.validate",
     "ver": "1.0",
     "ts": "2019-01-11T06:33:04ZZ",
     "params": {
          "resmsgid": "33b18620-6114-4b40-b439-6587c030bdc5",
          "msgid": null,
          "err": null,
          "status": null,
          "errmsg": null
     },
     "responseCode": "OK",
     "result": {
          "<field>": {
               "value": "youtube",
               "valid": false
          }
     }
}

Validation Logic:

  • Currently youtube URL will be validated based on license field
  • Currently google drive, azure and AWS URL will be validated based on size


URL Metadata Read API

POST - asset/v3/url/metadata/read

Request Header:

Authorisation: //Authorisation key
Content-Type: application/json'

Request Body

{
     "request": {
          "asset": {
               "provider": "<youtube/googledrive/azure/aws>",
               "url": "<URL LInk>"
          }
     }
}

Response Body

{
     "id": "asset.url.meatadata.read",
     "ver": "1.0",
     "ts": "2019-01-11T07:01:13ZZ",
     "params": {
          "resmsgid": "2c3f4fa4-645a-4d27-9b80-cd2626b82940",
          "msgid": null,
          "err": null,
          "status": null,
          "errmsg": null
     },
     "responseCode": "OK",
     "result": {
          "metadata": {
               "license": "youtube"
          }
     }
}
  • No labels