惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
B
Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Proofpoint News Feed
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
博客园 - 叶小钗
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
腾讯CDC
博客园 - Franky
博客园 - 聂微东
V
Visual Studio Blog
GbyAI
GbyAI
Martin Fowler
Martin Fowler
罗磊的独立博客
Y
Y Combinator Blog

Discourse Meta - Latest posts

Horizon: High Context Topic Cards I'd like to ask what this file /var/www/discourse/vendor/data/RT_sRGB.icm is used for? Discourse to Markdown Plugin How to verify a subdomain (mysite.discourse.group) in Google Search Console? Reader Mode Publishing WordPress gallery posts on Discourse Discourse User Feedback New user filter by custom field and contact Interact with discourse from Python? Why we can't type the assignee in the search of a post to assign - home screen app Redis Flushall Category-toggled one-touch move post Some sort of variable to eliminate duplicate text? Why did this plugin replacement fail? Add user to list modal often appears above the mobile viewport sceen Creating/Editing a post on mobile: let's discuss the 2026 Discourse experience Wp-discourse feature request - do not show comments with specific tag? Are there any good Chinese plugins? Discourse ID and 2FA Discourse MCP is here! Sample Forum to See Admin Features? I am unable to register for a free Discourse site Wikipedia Lookup Add text for /login (like js.create_account.disclaimer for /signup) How can i set disable Markdown & Default to Rich Text What's the background image size for the Welcome Banner? How do I enable Associated Accounts with 2FA? Hamburger toggle Support <span data-attribute> in the rich editor Cannot disable read-only mode on Free Plan
Delete Draft post from the API - getting not_found error
@nitinkg Nit · 2026-04-22 · via Discourse Meta - Latest posts
Hi, I’m trying to delete a draft using the API: DELETE /drafts/{draft_key}.json The draft exists (verified via GET /drafts.json ) and I’m using the correct draft_key and sequence . API Request (Postman / backend) DELETE https://<base_url>/drafts/{draft_key}.json Headers: Api-Key: <api_key> Api-Username: <username> Content-Type: application/x-www-form-urlencoded / application/json Body (tried both): x-www-form-urlencoded: draft_key=new_topic_xxxxx sequence=12 or raw JSON: { "draft_key": "new_topic_xxxxx", "sequence": 12 } Response { "errors": ["The requested URL or resource could not be found."], "error_type": "not_found" } From UI (works) The same delete works from the browser using: DELETE /drafts/{draft_key}.json form data: draft_key + sequence session cookies + CSRF token Question Is draft deletion supported via API key auth, same as the other APIs? If supported, what is the correct way to call this endpoint? Thanks.