我已经创建了一个带有post请求的api。
register_rest_route(\'myapi/v1\', \'/post_flyer\', array(
\'methods\' => \'POST\',
\'callback\' => \'api_post_flyer\',
));
我必须提交表单数据
<iframe></iframe>
或
<script></script>
在帖子内容中添加标签。
当我尝试使用postman检查此api时,每次它都会显示错误,如“找不到路由”,
"code": "rest_no_route",
"message": "No route was found matching the URL and request method",
"data": {
"status": 404
}
虽然整个功能都存在,但我想知道如何让api接受帖子内容的iframe和html标记?