Libraries tagged by http codes

lkj/httpstatus

0 Favers
13 Downloads

Defining http status Code, Messages and Response in constants

Go to Download


leibbrand-development/php-docker-client

0 Favers
23 Downloads

The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. Most of the client's commands map directly to API endpoints (e.g. `docker ps` is `GET /containers/json`). The notable exception is running containers, which consists of several API calls. # Errors The API uses standard HTTP status codes to indicate the success or failure of the API call. The body of the response will be JSON in the following format: ``` { "message": "page not found" } ``` # Versioning The API is usually changed in each release, so API calls are versioned to ensure that clients don't break. To lock to a specific version of the API, you prefix the URL with its version, for example, call `/v1.30/info` to use the v1.30 version of the `/info` endpoint. If the API version specified in the URL is not supported by the daemon, a HTTP `400 Bad Request` error message is returned. If you omit the version-prefix, the current version of the API (v1.41) is used. For example, calling `/info` is the same as calling `/v1.41/info`. Using the API without a version-prefix is deprecated and will be removed in a future release. Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine. The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer daemons. # Authentication Authentication for registries is handled client side. The client has to send authentication details to various endpoints that need to communicate with registries, such as `POST /images/(name)/push`. These are sent as `X-Registry-Auth` header as a [base64url encoded](https://tools.ietf.org/html/rfc4648#section-5) (JSON) string with the following structure: ``` { "username": "string", "password": "string", "email": "string", "serveraddress": "string" } ``` The `serveraddress` is a domain/IP without a protocol. Throughout this structure, double quotes are required. If you have already got an identity token from the [`/auth` endpoint](#operation/SystemAuth), you can just pass this instead of credentials: ``` { "identitytoken": "9cbaf023786cd7..." } ```

Go to Download


fredbradley/laravel-health-check-200

0 Favers
0 Downloads

Laravel Health Check 200 is a Health Check which checks for a 200 HTTP Status Code

Go to Download


charm/exceptions

0 Favers
0 Downloads

Various exception classes with some extra information such as HTTP Status Codes and HTTP Status Messages.

Go to Download


brilliantpackages/laravel-fmerrorhelper

0 Favers
592 Downloads

A package to convert FileMaker Pro error codes to standard HTTP status codes and messages.

Go to Download


balt-technologies/standards

1 Favers
426 Downloads

PHP Package with a bunch of enums for standards, eg. ISO countries, languages, http status code etc.

Go to Download


luminfire/laravel-fmerrorhelper

0 Favers
312 Downloads

A package to convert FileMaker Pro error codes to standard HTTP status codes and messages.

Go to Download


kwrz/twig-exception

2 Favers
1840 Downloads

Use to make customizables Twig exception pages for routes or specific HTTP status codes

Go to Download


vadimipatov/vtwsclib

1 Favers
54 Downloads

Fork of original vtwsclib from http://code.vtiger.com/vtiger/vtigercrm-sdk

Go to Download


troymccabe/bbyopen

0 Favers
5045 Downloads

An adaptation of http://code.google.com/p/bestbuy-service-remix/ for making BBYOpen calls.

Go to Download


saverty/errors_handling

1 Favers
17 Downloads

Laravel Errors Handling allow you to manage errors codes. Sometimes HTTP status aren't enought. With this package you can create your own status with a short description to share it with your team.

Go to Download


oyjz/phpquery-single

0 Favers
13 Downloads

phpQuery单文件版本,是Querylist的依赖,phpQuery项目主页:http://code.google.com/p/phpquery/

Go to Download


kruegge82/billbee-php-sdk-api

0 Favers
14 Downloads

Documentation of the Billbee REST API to connect a Billbee account to external aplications. ## Endpoint The Billbee API endpoint base url is https://api.billbee.io/api/v1 ## Activation You have to enable the API in the settings of your Billbee account. In addition you need a Billbee API Key identifying the application you develop. To get an API key, send a mail to [email protected] and send us a short note about what you are building. ## Authorization & security Because you can access private data with the Billbee API, every request has to be sent over https and must * Contain a valid API Key identifying the application/developer. It has to be sent as the HTTP header X-Billbee-Api-Key * Contain a valid user login with billbee username and api password in form of a basic auth HTTP header ## Throttling 50 calls per second for each API Key. 10 calls per second for each API Key in combination with Billbee user. Besides that each endpoint has a throttle of max 2 requests per second per combination of API Key and Billbee user. When you exceed the throttle threshold, the API will return a HTTP 429 status code and a Retry-After-Header indicating how many seconds you will have to wait before you can call the API again.

Go to Download


kaivnd/captcha

0 Favers
4 Downloads

A composer version of cool-php-captcha original project link here http://code.google.com/p/cool-php-captcha/

Go to Download


juniorfreitas/phpquery-laravel

0 Favers
1097 Downloads

Pacote Laravel PHPQUERY http://code.google.com/p/phpquery/

Go to Download


<< Previous Next >>