WordPress Post Creation via API
// ==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);
        }
    });
})();
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇