// ==UserScript==
// @name WordPress Post Creation via API
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Send POST request to create a WordPress post using API
// @author You
// @grant GM_xmlhttpRequest
// @connect dev798.com // 目标站点
// ==/UserScript==
(function() {
'use strict';
// API URL for creating a post
const apiUrl = 'https://dev798.com/wp-json/wp/v2/posts';
// Authentication header
const authHeader = 'Basic xxxxxxxxxxxxxxxxxxxxxx';
// Data for the new post
const postData = {
title: "Test Post",
content: "This is a test post created to validate authentication.",
status: "publish"
};
// Send the POST request to create the post
GM_xmlhttpRequest({
method: 'POST',
url: apiUrl,
headers: {
'Authorization': authHeader,
'Content-Type': 'application/json'
},
data: JSON.stringify(postData),
onload: function(response) {
if (response.status >= 200 && response.status < 300) {
console.log('Post created successfully:', response.responseText);
} else {
console.error('Error creating post:', response.statusText);
}
},
onerror: function(error) {
console.error('Error sending request:', error);
}
});
})();
暂无评论