-2

就像 WordPress 为我们提供评论、帖子等的休息 API。我想获得通知 API 代码。

developer.wordpress.com 提供了有关如何使用通知 API 的文档。

https://developer.wordpress.com/docs/api/1/get/notifications/$note_ID/

要使用这个 API,我需要 WordPress REST API 通知代码。

我怎样才能得到那个代码。

WordPress REST API 代码没有通知代码。

https://wordpress.org/plugins/rest-api/

请帮我。

4

1 回答 1

1

您可以使用以下代码使用 rest api 获取通知 id。

注意:假设 id 是 1801481297

<?php
$options  = array (
  'http' => 
  array (
    'ignore_errors' => true,
    'header' => 
    array (
      0 => 'authorization: Bearer YOUR_API_TOKEN',
    ),
  ),
);

$context  = stream_context_create( $options );
$response = file_get_contents(
    'https://public-api.wordpress.com/rest/v1/notifications/1801481297',
    false,
    $context
);
$response = json_decode( $response );
?>
于 2016-12-27T12:25:14.003 回答