Skip to content

GET/meta/sharing-buttons

Get a list of external services for which sharing buttons are supported.

Resource Information

   
Method GET
URL https://public-api.wordpress.com/rest/v1.1/meta/sharing-buttons
Requires authentication? No

Query Parameters

Response Parameters

Resource Errors

This endpoint does not return any errors.

Example

curl 'https://public-api.wordpress.com/rest/v1.1/meta/sharing-buttons'
<?php
$options  = array (
  'http' => 
  array (
    'ignore_errors' => true,
  ),
);

$context  = stream_context_create( $options );
$response = file_get_contents(
	'https://public-api.wordpress.com/rest/v1.1/meta/sharing-buttons',
	false,
	$context
);
$response = json_decode( $response );
?>