To answer your question faster, you can search our knowledgebase articles before submitting a ticket.
Knowledgebase
How to Install and configure WPL REST API plugin?
Posted by on 08 November 2019 02:10 PM
You need to download your WPL REST API plugin from Billing account

In order to install WPL REST API plugin, Please GOTO WordPress  > plugins > Add new > and then upload the zipped file.

 After uploading plugin you need to do configuration on -config and file to make it work.

1- In -config you need to configure the secret key.  
Edit your wp-config.php file and add a new constant called SECRET_KEY_JWT.
Please define  the  ('SECRET_KEY_JWT', 'your secret key');
jwt secret key
define('SECRET_KEY_JWT', "your secret key");
define("REALTYNA_JWT_SECRET", "your secret key");


2- You need to  HTTP To enable HTTP AUTHORIZATION, you’ll need to edit .htaccess file and add the following:
{
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
}

htaccess png file











Comments (0)