Libraries tagged by post info

arraypress/register-post-states

0 Favers
0 Downloads

A WordPress library for defining and managing custom post states within the admin area, facilitating a more informative and intuitive post management experience.

Go to Download


mavenbird/order-info-on-success-page-magento2

1 Favers
5 Downloads

Magento 2 Order Information Extension helps to Empower your Magento 2 store with the ability to provide comprehensive order details right on the order success page. Our Magento 2 Order Information Extension enhances the post-purchase experience by displaying crucial order information, streamlining the process for both merchants and customers.

Go to Download


d7sd6u/vk-posts-extractor-parser

0 Favers
0 Downloads

Library for obtaining posts from vk.com in simple array format (see README for more info). Library does not use VK's api, but parses the site.

Go to Download


thanatos-vf-2000/stats4wp

0 Favers
3 Downloads

This plugin gives you the complete information on your website's visitors.

Go to Download


bam-bam-bigelow/shipment-tracker

1 Favers
451 Downloads

Parses tracking information for several carriers, like UPS, USPS, DHL and GLS by simply scraping the data. No need for any kind of API access.

Go to Download


ansas/shipment-tracker

0 Favers
111 Downloads

Parses tracking information for several carriers, like UPS, USPS, DHL and GLS by simply scraping the data. No need for any kind of API access.

Go to Download


wielgosz-info/wi-query-tax-filter

1 Favers
8 Downloads

Allows to use query vars to filter Query Block posts.

Go to Download


kwall/kwall-alert-system

0 Favers
404 Downloads

A custom module to pull in alerts and post important information across your site.

Go to Download


frmontini/instafeed

0 Favers
8 Downloads

Get basic information and latest posts from a public Instagram profile.

Go to Download


teslax93/pppinfo

0 Favers
2 Downloads

Get information from Poczta Polska (Polish Post) about your package.

Go to Download


marshallu/mu-news-manager

0 Favers
2 Downloads

MU News Manager is the plugin that allows extra information to be included with Posts for University Communications

Go to Download


marshallu/mu-hrcomp

0 Favers
4 Downloads

Plugin that with a custom post type for jobs and salary information for HR.

Go to Download


cnp/wp-highest-ancestor

0 Favers
81 Downloads

A function for getting information about the highest ancestor of a post or term. Useful for section title information.

Go to Download


alissonlinneker/statuspage-php-sdk

0 Favers
0 Downloads

# Code of Conduct Please don't abuse the API, and please report all feature requests and issues to https://support.atlassian.com/contact # Rate Limiting Each API token is limited to 1 request / second as measured on a 60 second rolling window. To get this limit increased, please contact us at https://support.atlassian.com/contact Error codes 420 or 429 indicate that you have exceeded the rate limit and the request has been rejected. # Basics ## HTTPS It's required ## URL Prefix In order to maintain version integrity into the future, the API is versioned. All calls currently begin with the following prefix: https://api.statuspage.io/v1/ ## RESTful Interface Wherever possible, the API seeks to implement repeatable patterns with logical, representative URLs and descriptive HTTP verbs. Below are some examples and conventions you will see throughout the documentation. * Collections are buckets: https://api.statuspage.io/v1/pages/asdf123/incidents.json * Elements have unique IDs: https://api.statuspage.io/v1/pages/asdf123/incidents/jklm456.json * GET will retrieve information about a collection/element * POST will create an element in a collection * PATCH will update a single element * PUT will replace a single element in a collection (rarely used) * DELETE will destroy a single element ## Sending Data Information can be sent in the body as form urlencoded or JSON, but make sure the Content-Type header matches the body structure or the server gremlins will be angry. All examples are provided in JSON format, however they can easily be converted to form encoding if required. Some examples of how to convert things are below: // JSON { "incident": { "name": "test incident", "components": ["8kbf7d35c070", "vtnh60py4yd7"] } } // Form Encoded (using curl as an example): curl -X POST https://api.statuspage.io/v1/example \ -d "incident[name]=test incident" \ -d "incident[components][]=8kbf7d35c070" \ -d "incident[components][]=vtnh60py4yd7" # Authentication

Go to Download


tslol/docker-api-php

0 Favers
2 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.44) is used. For example, calling `/info` is the same as calling `/v1.44/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


<< Previous Next >>