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.
Nome | Valore | Descrizione |
---|---|---|
unit optional | nella stringa | Defines the report unit. Acceptable values are: 'strings', 'words' (by default), 'chars', 'chars_with_spaces'. |
language optional | nella stringa | The language for which the report should be generated. For this use Сrowdin language codes. |
date_from optional | date | Strings added from. Use the following ISO 8601 format: YYYY-MM-DD ±hh:mm |
date_to optional | date | Strings added to. Use the following ISO 8601 format: YYYY-MM-DD ±hh:mm |
format optional | nella stringa | Defines the export file format. Acceptable values are 'csv' and 'xlsx' (by default). |
json opzionale | nella stringa | Potrebbe non contenere alcun valore. Definisce che la risposta dovrebbe essere in formato JSON. |
jsonp opzionale | nella stringa | Nome della funzione di callback. Definisce che la risposta dovrebbe essere in formato JSONP. |
Variabili | ||
identificatore-progetto | nella stringa | Identificatore progetto. |
accesso | nella stringa | Il tuo nome utente su Crowdin. |
chiave-profilo | nella stringa | La chiave API del tuo profilo. |
<?xml version="1.0" encoding="UTF-8"?>
<success>
<hash>cd798eb822227162375675b9a4e8a95a1</hash>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>3</code>
<message>Chiave API non valida</message>
</error>
curl \
https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?login={username}&account-key={account-key}
curl \
-F "unit=chars" \
-F "format=csv" \
-F "language=uk" \
https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?login={username}&account-key={account-key}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/reports/top-members/export?mode=words&login={username}&account-key={account-key}&language=uk';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
echo $result;