import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wordpress_org: {
type: "app",
app: "wordpress_org",
}
},
async run({steps, $}) {
const data = {
"title": `New Title`,
}
return await axios($, {
method: "post",
url: `https://${this.wordpress_org.$auth.url}/wp-json/wp/v2/posts/POST_ID`,
auth: {
username: `${this.wordpress_org.$auth.username}`,
password: `${this.wordpress_org.$auth.application_password}`,
},
data,
})
},
})
Wordpress.org uses API keys for authentication. When you connect your Wordpress.org account, Pipedream securely stores the keys so you can easily authenticate to Wordpress.org APIs in both code and no-code steps.
This integration requires the Application Passwords plugin to be installed in your Wordpress instance which allows you to authenticate users without providing their passwords directly.
The URL field if for your domain such as https://[URL]/wp-json/wp/v2/posts/POST_ID.