DownloadApiSdk
Generated URLs with TTL for downloading binary files, (*1)
This PHP package is automatically generated by the Swagger Codegen project:, (*2)
Requirements
PHP 5.5 and later, (*3)
Installation & Usage
Composer
To install the bindings via Composer, add the following to composer.json:, (*4)
{
"repositories": [
{
"type": "git",
"url": "https://github.com/softonic/download_api_sdk.git"
}
],
"require": {
"softonic/download_api_sdk": "*@dev"
}
}
Then run composer install, (*5)
Manual Installation
Download the files and include autoload.php:, (*6)
require_once('/path/to/DownloadApiSdk/vendor/autoload.php');
Tests
To run the unit tests:, (*7)
composer install
./vendor/bin/phpunit
Getting Started
Please follow the installation procedure and then run the following:, (*8)
setAccessToken('YOUR_ACCESS_TOKEN');
// Configure OAuth2 access token for authorization: download_api_application
$config = Softonic\DownloadApiSdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
// Configure OAuth2 access token for authorization: download_api_implicit
$config = Softonic\DownloadApiSdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
// Configure OAuth2 access token for authorization: download_api_password
$config = Softonic\DownloadApiSdk\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Softonic\DownloadApiSdk\Api\FilesApi(
// 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
);
$id_files = "id_files_example"; // string | SHA-1 hash that identifies a file
$country = "country_example"; // string | The country from where the request is being done, used to sort download URL list
$extra = "extra_example"; // string | Associative array of parameters serialized and encoded in base64
try {
$result = $apiInstance->readFile($id_files, $country, $extra);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling FilesApi->readFile: ', $e->getMessage(), PHP_EOL;
}
?>
Documentation for API Endpoints
All URIs are relative to https://download-v2.eu-west.sftapi.com, (*9)
| Class |
Method |
HTTP request |
Description |
| FilesApi |
readFile |
GET /files/{id_files} |
Fetches a single File |
| FilesUrlsApi |
findFileUrl |
GET /files/{id_files}/urls |
List of FileUrls |
Documentation For Models
Documentation For Authorization
download_api_access_code
-
Type: OAuth
-
Flow: accessCode
-
Authorization URL: https://oauth-v2.softonic.com/token
-
Scopes:
-
download_api.read.files: Read Files
-
download_api.find.files.urls: Find Files/Urls
download_api_application
-
Type: OAuth
-
Flow: application
-
Authorization URL:
-
Scopes:
-
download_api.read.files: Read Files
-
download_api.find.files.urls: Find Files/Urls
download_api_implicit
-
Type: OAuth
-
Flow: implicit
-
Authorization URL: https://oauth-v2.softonic.com/authorize
-
Scopes:
-
download_api.read.files: Read Files
-
download_api.find.files.urls: Find Files/Urls
download_api_password
-
Type: OAuth
-
Flow: password
-
Authorization URL:
-
Scopes:
-
download_api.read.files: Read Files
-
download_api.find.files.urls: Find Files/Urls
Author
admin@softonic.com, (*10)