我正在尝试使用WP API生成随机密钥SEE HERE,但我似乎无法找到检索密钥并将其存储到变量中的方法。
我试过了:
$html = file_get_contents('http://api.wordpress.org/secret-key/1.1/salt/');
但它不可靠,有时候它会随机返回3组密钥5,6,7而不是它应该的8个。
使用cURL会发生同样的事情:
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'http://api.wordpress.org/secret-key/1.1/salt/');
$result = curl_exec($curl);
curl_close($curl);
如果有人能够对此有所了解,我们将不胜感激。
答案 0 :(得分:0)
首先将allow_url_include
设置为true。另外,请了解implications this can have on security。
然后使用require或include。
include('http://api.wordpress.org/secret-key/1.1/salt/');
echo AUTH_KEY;