我正在为多个移动应用程序使用 web api。我的 api 使用了 PHP。每个移动应用程序使用不同的 onesignal 帐户。在本机方面,我正在使用 axios 发送 rest API 密钥。在 api 方面,我想在 curl 中尝试这个 api 密钥。
我传统的点在 curl 内连接。但是当移动应用程序使用 api 时,它返回空错误。
$api_key = 'ASDFGHJKLSI';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://onesignal.com/api/v1/notifications");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json; charset=utf-8',
'Authorization: Basic ."$api_key".'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
在 curl 中使用变量是正确的方法吗?
元芳怎么了