transltr apiは、localhostからphpを使ってどうやって呼び出せますか?私はapiを呼び出す知識がなく、PHPファイルに何を入力すればいいのですか?前もって感謝します !transltr apiの使い方
0
A
答えて
0
php cUrlライブラリを読み込んで有効にする必要があります。 これはphpinfoファイルを使って確認できます。
APIを使用するには、以下のコードを試してみてください。これは
0
CURL拡張子のcurl_exec functionを使用できます。それがどのように見える最も単純な形式で :
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
$result = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
今$result
はあなたが必要なものを保持しています。
+0
を助け
<?php $params = array('text'=>'something', 'from'=>'en', 'to'=>'de'); $data_string = json_encode($params); $ch = curl_init('http://www.transltr.org/api/translate'); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'Content-Length: ' . strlen($data_string)) ); $result = curl_exec($ch); if(!$result){ die('Error: "' . curl_error($curl) . '" - Code: ' . curl_errno($curl)); } echo $result; ?>
希望はこれがAPIを呼び出すための基本的ですか? – Aliah
関連する問題
- 1. facebook login apiの使い方
- 2. Facebook APIトークンの使い方
- 3. iOSプライベートAPIの使い方
- 4. rapidshare apiの使い方は?
- 5. osticket APIキーの使い方
- 6. Blender APIドキュメントの使い方
- 7. instagram APIの使い方は?
- 8. youtube APIの使い方は?
- 9. shinken livestatus APIの使い方
- 10. Magento Rest APIの使い方
- 11. C - LinuxでのAPIライブラリの使い方
- 12. Google Analytics APIのパラメータの使い方
- 13. youtube python apiのrefresh_tokenの使い方は?
- 14. アンドロイドのAWS api gatewayの使い方は?
- 15. androidのgoogle speech apiの使い方
- 16. MailGun APIのphp foreachループの使い方
- 17. コードネームワンのGoogle Speech APIの使い方は?
- 18. (Facebook Graph APIの)access_tokenの使い方は?
- 19. Yahoo!の使い方oauth-phpライブラリのAPI?
- 20. アイコンコール2のAPIコールの使い方
- 21. angularjs ..のwebworker APIの使い方
- 22. スカラーAPIドキュメントの使い方は?
- 23. Google Map API for Webの使い方は?
- 24. ReactXP storage apiの使い方は?
- 25. angular 'title' APIの使い方は?
- 26. カールの使い方wso2-am example api
- 27. XamarinフォームとGoogle Direction APIの使い方
- 28. Facebook api v2.6の使い方は?
- 29. Google Maps API - Meteorの使い方
- 30. Twitter API Collectionsの使い方は?
ありがとうございました!これは本当に役立ちます – Aliah