GET /meta/external-services/

Get a list of third-party services that WordPress.com or Jetpack sites can integrate with via keyring.

Resource Information

   
Method GET
URL https://public-api.wordpress.com/rest/v1.1/meta/external-services/
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/external-services/'
<?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/external-services/',
	false,
	$context
);
$response = json_decode( $response );
?>

Response

{
    "services": {
        "facebook": {
            "ID": "facebook",
            "label": "Facebook",
            "type": "publicize",
            "description": "Publish your posts to your Facebook timeline or page.",
            "genericon": {
                "class": "facebook-alt",
                "unicode": "\\f203"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-fb-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=721c6337ce&for=connect&service=facebook&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": true,
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "twitter": {
            "ID": "twitter",
            "label": "Twitter",
            "type": "publicize",
            "description": "Publish your posts to your Twitter account.",
            "genericon": {
                "class": "twitter",
                "unicode": "\\f202"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-twitter-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=fd0baceb7f&for=connect&service=twitter&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": false,
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "google_plus": {
            "ID": "google_plus",
            "label": "Google+",
            "type": "publicize",
            "description": "Publish your posts to your Google+ page.",
            "genericon": {
                "class": "googleplus-alt",
                "unicode": "\\f218"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-google-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=d5be01a4c6&for=connect&service=google_plus&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": false,
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "linkedin": {
            "ID": "linkedin",
            "label": "LinkedIn",
            "type": "publicize",
            "description": "Publish your posts to your LinkedIn profile.",
            "genericon": {
                "class": "linkedin",
                "unicode": "\\f207"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-linkedin-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=eebca92209&for=connect&service=linkedin&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": false,
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "tumblr": {
            "ID": "tumblr",
            "label": "Tumblr",
            "type": "publicize",
            "description": "Publish your posts to your Tumblr blog.",
            "genericon": {
                "class": "tumblr",
                "unicode": "\\f214"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-tumblr-2x.png",
            "multiple_external_user_ID_support": true,
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=62813847d5&for=connect&service=tumblr&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "path": {
            "ID": "path",
            "label": "Path",
            "type": "publicize",
            "description": "Publish your posts as Path moments.",
            "genericon": {
                "class": "path",
                "unicode": "\\f219"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/admin-plugins\/publicize\/assets\/publicize-path-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=07b6413a38&for=connect&service=path&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": false,
            "jetpack_support": true,
            "jetpack_module_required": "publicize"
        },
        "eventbrite": {
            "ID": "eventbrite",
            "label": "Eventbrite",
            "type": "other",
            "description": "Connect to Eventbrite",
            "genericon": {
                "class": "eventbrite",
                "unicode": "\\f8a6"
            },
            "icon": "http:\/\/i.wordpress.com\/wp-content\/lib\/eventbrite-api\/eventbrite-2x.png",
            "connect_URL": "https:\/\/public-api.wordpress.com\/connect\/?action=request&kr_nonce=3b6835b56f&nonce=02c1482c64&for=connect&service=eventbrite&kr_blog_nonce=517dbacb44&magic=keyring&blog=2916284",
            "multiple_external_user_ID_support": false,
            "jetpack_support": false
        }
    }
}