获取 JSON 数据导致警告:htmlspecialchars() expects parameter 1 to be string, array given in wp-includes/formatting.php on line 4529

Getting JSON data results in warning: htmlspecialchars() expects parameter 1 to be string, array given in wp-includes/formatting.php on line 4529

5 年前,我花钱请人为我的网站制作了一个插件,现在我正试图让它再次运行。我不知道 JSON 是如何工作的,所以这是我第一次尝试它。基本上我的插件会使用 Iframely API 来获取文章的摘要并将数据从编辑器中的 URL 保存到自定义字段。

我的 function.php 中有问题的代码是这样的:

function post_extra_save( $post_id, $post){
global $pagenow;
if ($pagenow == 'post.php') {
    if ( has_post_format('link', $post_id)) {
        $url = get_post_field('post_content', $post_id);
        $request_url = 'https://iframe.ly/api/iframely?url='. urlencode($url) .'&api_key='.get_field_object('api_key', 'option')['value'];
        $response = wp_remote_get( esc_url_raw( $request_url ) );
        $api_response = json_decode( wp_remote_retrieve_body( $response ), true );
        update_field('field_61942d74195e7', $api_response);
    }
}
}
add_action( 'save_post', 'post_extra_save', 10, 2 );

它所做的是向 Iframely API、returns 和 JSON 发送 URL 加 API 键并将原始输出保存到自定义字段。

当我保存 post 时,我收到此错误消息:

Warning: htmlspecialchars() expects parameter 1 to be string, array given in /wp-includes/formatting.php on line 4529

知道这是什么意思吗?

找到我的问题。我让它工作的是它从 post 内容中获取 URL,从原始 JSON 对其进行编码并对其进行解码。

$request = wp_remote_get( 'https://iframe.ly/api/iframely?url='. urlencode($url) .'&api_key='.get_field_object('api_key', 'option')['value'] );
$data_raw = json_encode( wp_remote_retrieve_body( $request ));
$data = json_decode($data_raw);