Bitrise üzerinde çalışıyorum ve orada PHP'de API kullanmaya çalıştım. Yani PHP'de bu kabuk komutu dönüştürmek için çalıştı:PHP Curve with JSON verisi
curl https://www.bitrise.io/app/[APP-SLUG]/build/start.json --data '{"hook_info":{"type":"bitrise","api_token":"[API-TOKEN]"},"build_params":{"tag":"1.0.0"}}'
Birisi bana yardımcı olabilir? Benim sonuç her zaman yanlıştır. kullanılan Kodum:
$data_json = '{"hook_info":{"type":"bitrise","api_token":"[API-TOKEN]"},"build_params":{"tag":"1.0.0"}}';
$url = 'https://www.bitrise.io/app/[APP-SLUG]/build/start.json';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$data_json);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
var_dump($response);
Bitrise, bana "gizli" url ve veri bilgiler vermek Burada verilen url ve verilerin sadece bir örnektir desenli.
Teşekkür ederiz.