我一直在使用wordpress处理Web服务,我从邮递员那里点击了授权令牌标题但是能够在php代码中获取它。这是我的代码。
$reuqest_token = getallheaders();
这是我的.htaccess文件
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
# END WordPress
如果有其他选择,请有人告诉我。