WordPress
Hacer solicitudes de red con API HTTP
Buscar..
Sintaxis
- $ respuesta = wp_remote_get ($ url, $ args);
- $ respuesta = wp_remote_post ($ url, $ args);
- $ respuesta = wp_safe_remote_post ($ url, $ args);
Parámetros
Parámetro | Detalles |
---|---|
$ url | (cadena) (Requerido) URL del sitio para recuperar. |
$ args | (array) (Opcional) Solicita argumentos. |
Observaciones
OBTENER un recurso JSON remoto
Este fragmento tomará un recurso con formato JSON, lo decodificará e imprimirá en formato de matriz PHP.
// Fetch
$response = wp_remote_get( 'http://www.example.com/resource.json' );
if ( ! is_wp_error( $response ) ) {
$headers = wp_remote_retrieve_headers( $response );
if ( isset( $headers[ 'content-type' ] ) && 'application/json' === $headers[ 'content-type' ] ) {
print_r( json_decode( wp_remote_retrieve_body( $response ) ) );
}
}
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow