gpt4 book ai didi

java - 为了通过java创建帖子的wordpress api POST请求仅针对特定帖子返回403禁止

转载 作者:行者123 更新时间:2023-12-02 04:34:29 25 4
gpt4 key购买 nike

wordpress API 对于特定帖子返回 403 禁止,而对于其他帖子则正常

尝试更改 authCookie 但没有成功。

    LOG.info("Creating post with title:" + title);

String nonce = getNonceForCreatePost(authCookie);

HttpPost post = new HttpPost(createPostUrl);
post.addHeader("User-Agent", "Mozilla/5.0");

List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("nonce", nonce));
nvps.add(new BasicNameValuePair("cookie", authCookie));
nvps.add(new BasicNameValuePair("status", status));
nvps.add(new BasicNameValuePair("title", title));
nvps.add(new BasicNameValuePair("content", content));
nvps.add(new BasicNameValuePair("categories", Utils.listToCommaSeparated(categories)));
nvps.add(new BasicNameValuePair("tags", Utils.listToCommaSeparated(tags)));
nvps.add(new BasicNameValuePair("author", author));

post.setEntity(new UrlEncodedFormEntity(nvps, "UTF-8"));

CloseableHttpResponse res = httpClient.execute(post);

int code = res.getStatusLine().getStatusCode();

我期望 200 OK 响应代码。

最佳答案

找到了,原因是内容中有一些SVG元素,删除后一切正常

关于java - 为了通过java创建帖子的wordpress api POST请求仅针对特定帖子返回403禁止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56558309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com