Hi,
Basic Auth just doesn't work for me, been stuck for days and feels like I have turned over every stone there is to find a solution.
Some info about my hosting(phpinfo();):
PHP Version 5.6.8
Server API: CGI/FastCGI
I have added the below to .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
And doing a var_dump on below shows correct values.
$_SERVER['PHP_AUTH_USER']
$_SERVER['PHP_AUTH_PW']
$_SERVER['HTTP_AUTHORIZATION']
Now to the issue. I get 403 Forbidden error using both postman and postman package sending the following information to the server:
POST /wp-json/posts HTTP/1.1
Host: mysite.com
Authorization: Basic XXXXXXXXXXXXXXX
Cache-Control: no-cache
Postman-Token: 6bb61e83-0bec-afcd-9b5d-605340683730
Content-Type: application/x-www-form-urlencoded
title=Test+1&content_raw=Test+2222&status=publish
The response I get:
[
{
"code": "json_cannot_create",
"message": "Sorry, you are not allowed to post on this site."
}
]
Anyone who has any idea or can point me in the right direction?
Hi,
Basic Auth just doesn't work for me, been stuck for days and feels like I have turned over every stone there is to find a solution.
Some info about my hosting(phpinfo();):
I have added the below to .htaccess:
And doing a var_dump on below shows correct values.
Now to the issue. I get 403 Forbidden error using both postman and postman package sending the following information to the server:
The response I get:
Anyone who has any idea or can point me in the right direction?