Yes, using that filter will affect the lifespan of all nonces created after this filter is added, and while it remains in-place. So your best bet is to add it, create the nonce, remove it:
function my_nonce_lifetime() {
return 600; // 10 minutes
}
add_filter( 'nonce_life', 'my_nonce_lifetime' );
$nonce = wp_create_nonce('wp_rest');
remove_filter( 'nonce_life', 'my_nonce_lifetime' );
Related Posts:
- WP Rest API: details of latest post including featured media url in one request?
- Building a custom REST API
- run silex or slim with wordpress
- To Disable WordPress Rest API or Not To Disable?
- Filter out results from REST API
- How to authenticate custom API endpoint in WooCommerce [closed]
- WordPress pods io – Rest API for fetching fields information for custom post type
- Add Products to user’s ID Woocommerce
- Store post in raw markdown format, no html?
- Multisite functions to communicate with individual site functions
- REST-API: extend media-endpoint
- When is it useful to use wp_verify_nonce
- Accessing plugin functionality within WP REST API
- Permission Check for REST API Endpoint Runs Twice?
- Keep user’s privileges on accessing contents in JSON response
- How to get the wpnonce value?
- How to retrieve custom meta term of category taxonomy from WP Rest API?
- How can I create a plugin installation link?
- Security checking in meta_box save is reluctant?
- Remove caching from wp_remote_get calls from custom plugin
- I am getting error message on accessing menu-endpoint
- How can I capture Memberpress user info after signup [closed]
- Custom REST API endpoint returns rest_no_route when called via wp-json permalink
- wp_create_nonce function doesn’t work inside a plugin?
- How to save generated JWT token to cookies on login?
- Nonce failing on form submission
- wp_get_post_terms is difference obj model than the one in rest api response
- How to modify WCMP Rest API response?
- Ability to make API calls out of WordPress as well as executing SQL?
- Access WordPress data from external PHP application.
- Limit post creation by role
- Ajax with plugins returns 0
- how to do login using woocommerce rest api From android
- Plugin retrieving results even after uninstallation
- Getting a Page via its post-name using WP REST API v2 and Postman
- WordPress REST API Plugin Development – Add Custom Endpoint
- How to create WordPress custom end point with multiple parameters?
- How to execute plugin and theme updates from a web hook / endpoint?
- How do I make reusable content blocks for header and footer when using WordPress headless with another front-end?
- REST API can’t get the response manually
- Custom API plugin to execute 3rd party API to retrieve data
- How to add a WordPress Nonce for this form to avoid CSRF
- WP Rest API and json_decode()
- Nonce failing with second argument
- Saving custom data via ajax with nonces
- Change Dashboard URL from wp-admin to wp-admin/index.php
- WordPress Media Library Folders + Custom Linux Server Hosting
- WordPress REST API: Query media files attached to a custom post type
- I’m receiving the following error using the below code: Uncaught Error: Cannot use object of type WP_REST_Response as array
- How to send SMS notification to customer after click on submit?
- How to send the featured image of a post to an API?
- Escape commas in REST API
- Do i need to use a plugin for third party api integration?
- Adding Custom Endpoint in WordPress Rest API
- One WooCommerce Store to multi distributor sites
- Custom REST API POST Endpoint Not Working, 404 Error
- is it possible to fetch data from a remote api while admin is writing a new post?
- add tags to wordpress post using REST API
- WordPress output data to another website and pull data
- Hide response returned from WordPress REST API call
- How much PHP and MySQL or MariaDB knowledge should I know to start writing WordPress themes and plug-ins and whatever else a beginner can edit?
- Unable to update plugins or log out
- How achive serving multiple concurrent Ajax / Rest calls in plugin?
- Showing how many times is plugin activated or deactivated
- Modifying server’s response to API endpoint
- Can’t access 3rd party API, code works on local server but not on wordpress
- Is it possible to custom set query for a WordPress REST API response?
- How can I add a permissions callback to the REST API index pages?
- How to get data from a private API and add it to wordpress pages
- Fetching users data from REST API
- Consume legacy rest api dependent upon WP API plugin
- wp rest api (v2) filter not working (404 error – rest_no_route)
- WordPress PHP error getting posts from another wordpress blog
- custom REST endpoint not passing body of POST request to callback
- Fetching WP.me shortlinks for posts using WP Rest API
- Upload image to wordpress using ionic/cordova with WP REST API V2
- WP Rest API v2.0 user profile update issue
- Sending post data over REST API, how to parse shortcodes in post_content?
- How to do rest APi with wordpress
- wp_verify_nonce fails always
- Extend WordPress REST API with Scheme Pro Plugin
- wordpress Ajax success doesn’t return the value
- How can I send api calls from my plugin?
- Filter custom post type returned from REST api
- My wp_update_nav_menu action is firing twice
- WordPress REST API Visual Composer Shortcodes
- Update post meta Rest Api
- Is option_active_plugins actually doing anything useful?
- WordPress REST API filter on blank custom ACF
- WooCommerce REST API aborts connection [closed]
- How to update a lot of posts on my WP site with additional content?
- how to update WordPress plugins from external website with nodejs?
- Is it a good idea to restrict the REST API
- Is Nonce Verification (CSRF) required for WordPress Custom Bulk User Actions?
- REST API – filters not working inside plugin class
- i need to resive data external api and show user
- Can The REST API be used to create/edit plugins and themes?
- How prevent STDOUT of Plugin_Upgrader->upgrade(…)?
- Get list of outdated plugins in the rest api?
- Long running tasks in a plugin: wp-cron vs REST API callback [closed]