Changes between Initial Version and Version 1 of Ticket #7979
- Timestamp:
- 05/19/2025 12:49:41 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7979
-
Property
Priority
changed from
normaltolowest -
Property
Summary
changed from
REST API: Fields filtering is not working as expecttoPlugins API: Fields filtering doesn't remove all fields.
-
Property
Priority
changed from
-
Ticket #7979 – Description
initial v1 5 5 Headers: `User.Agent = "WordPress/6.9-alpha-60093-src; http://localhost:8889/"` 6 6 Params: 7 ``` 7 {{{ 8 8 { 9 9 "action": "plugin_information", 10 "request %5Bslug%5D": "secupress",11 "request %5Bfields%5D%5Bcontributors%5D": "0",12 "request %5Bfields%5D%5Bauthor%5D": "0",13 "request %5Bfields%5D%5Bsupport_threads%5D": "0",14 "request %5Blocale%5D": "en_US",15 "request %5Bwp_version%5D": "6.9"10 "request[slug]": "secupress", 11 "request[fields][contributors]": "0", 12 "request[fields][author]": "0", 13 "request[fields][support_threads]": "0", 14 "request[locale]": "en_US", 15 "request[wp_version]": "6.9" 16 16 } 17 ``` 17 }}} 18 18 19 19 Despite explicitly asking to not include, resulting response is including: … … 30 30 31 31 Are not even being handled there, so it's impossible to decide to filter them out even manually. 32 33