markdown 连接到API
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 连接到API相关的知识,希望对你有一定的参考价值。
```php
$theAPIkey = ''; // x-api-key
$theAPIapp = ''; // x-api-application
$theURL = '';
$timeout = 5; // set to zero for no timeout
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $theURL);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array(
'x-api-key' . $theAPIkey,
'x-api-application' . $theAPIapp
));
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$response = curl_exec($ch);
echo '<pre>';
print_r($response);
echo '</pre>';
curl_close($ch);
```
以上是关于markdown 连接到API的主要内容,如果未能解决你的问题,请参考以下文章
markdown 以root身份连接到容器
markdown 连接到AWS
markdown 将Firebase托管连接到Namecheap自定义域
markdown php无法连接到错误13的mysql(但命令行可以)
如何将Markdown连接到另一个Markdown的锚点?
markdown 使用docker客户端连接到另一台主机,而无需修改本地Docker安装