Please consider that API 2.0 is now the preferred version to be used. The old API will remain fully functional until the end of 2021.
Navn | Parameter | Beskrivelse |
---|---|---|
include_assigned valgfri | bool | Definerer, hvorvidt de tildelt ordbøger bør indgå i den downloadede TBX-fil. Gyldige værdier er: 0, 1. Standard er 1. |
Variabler | ||
project-identifier | string | Projektidentifikator. |
login | string | Dit brugernavn i Crowdin. |
account-key | string | Din konto API-nøgle. |
wget -O project.tbx https://api.crowdin.com/api/project/{project-identifier}/download-glossary?login={username}&account-key={account-key}
<?php
ini_set('auto_detect_line_endings', 1); // allows file support for macintosh
ini_set('default_socket_timeout', 5); // socket timeout, just in case
file_put_contents('project.tbx', file_get_contents('https://api.crowdin.com/api/project/{project-identifier}/download-glossary?login={username}&account-key={account-key}'));