macropage/sdk-ebay-rest-media

The Media API allows sellers to create, upload, and fetch videos.

dev-master 2022-02-11 17:57 UTC

This package is auto-updated.

Last update: 2024-04-14 20:27:26 UTC


README

The Media API allows sellers to create, upload, and fetch videos.

Installation & Usage

Requirements

PHP 7.3 and later. Should also work with PHP 8.0 but has not been tested.

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/macropage/sdk-ebay-rest-media.git"
    }
  ],
  "require": {
    "macropage/sdk-ebay-rest-media": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/sdk-ebay-rest-media/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');



// Configure OAuth2 access token for authorization: Authorization Code
$config = macropage\SDKs\ebay\rest\media\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new macropage\SDKs\ebay\rest\media\Api\VideoApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$body = new \macropage\SDKs\ebay\rest\media\Model\CreateVideoRequest(); // \macropage\SDKs\ebay\rest\media\Model\CreateVideoRequest

try {
    $apiInstance->createVideo($body);
} catch (Exception $e) {
    echo 'Exception when calling VideoApi->createVideo: ', $e->getMessage(), PHP_EOL;
}

API Endpoints

All URIs are relative to https://apim.ebay.com/commerce/media/v1_beta

Class Method HTTP request Description
VideoApi createVideo POST /video
VideoApi getVideo GET /video/{video_id}
VideoApi uploadVideo POST /video/{video_id}/upload

Models

Authorization

Authorization Code

Tests

To run the tests, use:

composer install
vendor/bin/phpunit

Author

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: v1_beta.1.0
    • Package version: 2.3.2
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen