Download the PHP package maheshwaghmare/wp-dev-remote-request without Composer

On this page you can find all versions of the php package maheshwaghmare/wp-dev-remote-request. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wp-dev-remote-request

WP Dev Remote Request

The "WP Dev Remote Request" package provide the function wp_dev_remote_request_get() which allow us to send the HTTP requests and store the response into the transient.

So, If we resend the request then it serve the data from the transient.

If transient get expired, then it trigger the live request and store the data into the transient and return the response.

Internally use the wpremote*() functions to send the remote requests.

Syntax

Below are some quick examples:

Parameters

Below is the list of default parameters:

How it works?

The package provide the function wp_dev_remote_request_get() to send the HTTP request.

Here, We can see the live HTTP request send only for the first time and for next request it return the cached response from the transient.

In above example we have pass the https://maheshwaghmare.com/wp-json/wp/v2/posts as parameter into the function wp_dev_remote_request_get();

Let's see another example with additional parameters.

How to request considered as unique request?

The remote request data is stored into the transient.

So, While storing the data into the transient it create a unique transient key with the help of the HTTP request URL.

E.g.

Install

Install with Composer

Install the package with composer using below command:

After installing the package simply use function wp_dev_remote_request_get().

E.g.

Visit http://packagist.org/packages/maheshwaghmare/wp-dev-remote-request

Debugging

If you enable the debug log and then try to send the request the you can see the logs into the debug.log file.

Below is the log of above code:

Here, We can see the first request takes the 5 seconds because it send the live request.

But, The second and third request takes the 1 second because it get the response from the transient.


All versions of wp-dev-remote-request with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
composer/installers Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package maheshwaghmare/wp-dev-remote-request contains the following files

Loading the files please wait ....