如何使用rest-api更新post_meta?

发布于 2025-01-14 05:39:10 字数 675 浏览 1 评论 0原文

我正在尝试使用文档 它说它支持 meta 字段。但是,当我尝试使用 REST API 更新音频文件的 artistalbum 字段时,它不会保存数据。

有效负载:

{
    meta: {artist: "Mons"}
    artist: "Mons"
    title: "Hello world"
}

还尝试过:

{
    meta: _wp_attachment_metadata: { {artist: "Mons"} }
    artist: "Mons"
    title: "Hello world"
}

Endpont:/wp-json/api/v2/media/__ID__/

这里标题已更新,但艺术家没有更新。

I'm trying to update attachment metadata using the default rest API, in the documentation it says it supports the meta field. But when I'm trying to update the artist or album field for an audio file using REST API, it doesn't save the data.

Payload:

{
    meta: {artist: "Mons"}
    artist: "Mons"
    title: "Hello world"
}

Also tried with:

{
    meta: _wp_attachment_metadata: { {artist: "Mons"} }
    artist: "Mons"
    title: "Hello world"
}

Endpont: /wp-json/api/v2/media/__ID__/

Here title gets updated but artist doesn't.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文