我正在查看WordPress REST API中的文档,并且看起来很容易获得只读内容,但是现在我正在寻找创建帖子并进行身份验证,如:
https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/
问题是我不知道如何模拟PHP代码:
<?php
wp_localize_script( 'wp-api', 'wpApiSettings', array(
'root' => esc_url_raw( rest_url() ),
'nonce' => wp_create_nonce( 'wp_rest' )
) );
所以我一直想弄清楚这段代码的作用,并在Python3中做等效的事情,而在互联网上找不到任何东西。