1
我們想從iPhone調用一個安靜的post API。你能給我一個這樣的示例代碼片段嗎?來自iOS的Restful post API
我的API URL是http://machinename/asyh/restful.php/1/VideoStreaming 發佈參數名稱是file_chunk。
API會將file_chunk參數中收到的數據附加到服務器中的文件中。
我已經從C#調用了相同的API。但我不知道如何從iOS調用它。請幫幫我。
服務器代碼如下(它在PHP中)。寧靜的web服務是使用synfony框架以PHP編寫的。
$fileChunk = $request->getPostParameter('filechunk');
$vodFolder = 'D:\\web\\entertainment\\';
$vodFile = $vodFolder . "testFile.mov";
$fh = fopen($vodFile, 'a');
fwrite($fh, $fileChunk);
fclose($fh);