Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saksmt/buzz-realmed-curl-client
BuzzBrowser curl client with support for http-realm authentication
https://github.com/saksmt/buzz-realmed-curl-client
Last synced: about 2 months ago
JSON representation
BuzzBrowser curl client with support for http-realm authentication
- Host: GitHub
- URL: https://github.com/saksmt/buzz-realmed-curl-client
- Owner: saksmt
- Created: 2015-09-09T11:12:09.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2015-12-21T15:51:14.000Z (about 9 years ago)
- Last Synced: 2024-04-28T23:23:38.069Z (8 months ago)
- Language: PHP
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
smt/buzz-realmed-curl-client
============================[Buzz Browser](http://github.com/kriswallsmith/buzz) curl client with support for http-realm authentication.
Installation
------------composer require smt/buzz-realmed-curl-client
That's it!Usage
-----setAuthenticationMethod(RealmedCurlClient::AUTH_NTLM);
$browser = new Browser($client);
$browser->get(/* ... */);
**Available authentication methods:**- `RealmedCurlClient::AUTH_ANY` - cURL "any" authentication method;
- `RealmedCurlClient::AUTH_BASIC` - Basic authentication method;
- `RealmedCurlClient::AUTH_NTLM` - NTLM authentication method;
- `RealmedCurlClient::AUTH_DIGEST` - Digest authentication method;
- `RealmedCurlClient::AUTH_NEGOTIATE` - Negotiate authentication method;
For more see [Buzz Browser](http://github.com/kriswallsmith/buzz)