Recommend this page to a friend! |
Classes of Adeleye Ayodeji | Nolimitbuzz WP Theme | vendor/wp-cli/wp-cli/bundle/rmccue/requests/README.md | Download |
|
![]() Requests for PHPRequests is a HTTP library written in PHP, for human beings. It is roughly based on the API from the excellent Requests Python library. Requests is ISC Licensed (similar to the new BSD license) and has no dependencies, except for PHP 5.6+. Despite PHP's use as a language for the web, its tools for sending HTTP requests are severely lacking. cURL has an interesting API, to say the least, and you can't always rely on it being available. Sockets provide only low level access, and require you to build most of the HTTP response parsing yourself. We all have better things to do. That's why Requests was born.
Requests allows you to send HEAD, GET, POST, PUT, DELETE, and PATCH HTTP requests. You can add headers, form data, multipart files, and parameters with basic arrays, and access the response data in the same way. Requests uses cURL and fsockopen, depending on what your system has available, but abstracts all the nasty stuff out of your way, providing a consistent API. Features
InstallationInstall with ComposerIf you're using Composer to manage dependencies, you can add Requests with it.
or
Install source from GitHubTo install the source code:
Next, include the autoloader in your scripts:
You'll probably also want to register the autoloader:
Install source from zip/tarballAlternatively, you can fetch a [tarball][] or [zipball][]:
[tarball]: https://github.com/WordPress/Requests/tarball/stable [zipball]: https://github.com/WordPress/Requests/zipball/stable Using a Class LoaderIf you're using a class loader (e.g., [Symfony Class Loader][]) for [PSR-4][]-style class loading:
[Symfony Class Loader]: https://github.com/symfony/ClassLoader [PSR-4]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4.md DocumentationThe best place to start is our [prose-based documentation][], which will guide you through using Requests. After that, take a look at [the documentation for
Requests is 100% documented with PHPDoc. If you find any problems with it, create a new issue! [prose-based documentation]: https://github.com/WordPress/Requests/blob/stable/docs/README.md [request_method]: https://requests.ryanmccue.info/api-2.x/classes/WpOrg-Requests-Requests.html#method_request TestingRequests strives to have 100% code-coverage of the library with an extensive set of tests. We're not quite there yet, but [we're getting close][codecov]. [codecov]: https://codecov.io/github/WordPress/Requests/ To run the test suite, first check that you have the PHP JSON extension enabled. Then simply:
If you'd like to run a single set of tests, specify just the name:
Contribute
If you have questions while working on your contribution and you use Slack, there is a [#core-http-api] channel available in the [WordPress Slack] in which contributions can be discussed. [the repository]: https://github.com/WordPress/Requests [#core-http-api]: https://wordpress.slack.com/archives/C02BBE29V42 [WordPress Slack]: https://make.wordpress.org/chat/ |