Name | Wert | Beschreibung |
---|---|---|
key benötigt | String | Projekt-API-Schlüssel. |
prefix optional | String | Add special characters at the beginning of each string to show where messages have been concatenated together. |
suffix optional | String | Add special characters at the end of each string to show where messages have been concatenated together. |
length_transformation optional | integer | Make string larger or shorter. Acceptable values must be from -50 to 100. Default is 0. |
char_transformation optional | String | Transforms characters to other languages. Acceptable values are: asian, european, arabic. |
json optional | String | May not contain value. Defines that response should be in JSON format. |
jsonp optional | String | Callback function name. Defines that response should be in JSONP format. |
Variablen | ||
project-identifier | String | Projekt-ID. |
project-key | String | Projekt-API-Schlüssel. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
login | String | Ihr Crowdin-Nutzername. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
account-key | String | Ihr Konto-API-Schlüssel. Entweder project-key oder die Kombination aus login und account-key wird benötigt. |
<?xml version="1.0" encoding="UTF-8"?>
<success>
</success>
<?xml version="1.0" encoding="UTF-8"?>
<error>
<code>3</code>
<message>API key is not valid</message>
</error>
curl \
https://api.crowdin.com/api/project/{Projekt-ID}/pseudo-export?key={Projektschlüssel}
curl \
-F "prefix=pref" \
-F "suffix=suff" \
-F "char_transformation=european"
https://api.crowdin.com/api/project/{Projekt-ID}/pseudo-export?key={Projektschlüssel}
<?php
$request_url = 'https://api.crowdin.com/api/project/{project-identifier}/pseudo-export?prefix=pref&key={project-key}&type=txt';
$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;