Automatically post an answer to a question with Python

1.52K viewsCoreapi
0

I am trying to automatically post an answer to a question with Python. Is it possible to do so? At the moment I have a website running AnsPress with a script that listens to a specified question and waits for someone to post an answer to that specific question and then automatically write an answer to that question as well. The issue is I can’t find a way to do this on Python. I can do it on regular WordPress posts and comments since they have a REST API. I am wondering if such feature is available on AnsPress or not. Thank you.

Answered question
0

AnsPress does not have a built-in REST API for answers, but you can:

  1. Use WordPress REST API with Custom Routes:

    • Extend the WP REST API to handle AnsPress answers by hooking into ap_after_new_answer or similar actions.

  2. Direct Database Insertion:

    • If comfortable with raw SQL, insert directly into AnsPress tables (ap_answersap_qameta), but this is riskier.

  3. WP-CLI or XML-RPC:

    • Use Python’s wordpress_xmlrpc library to simulate form submissions.

Cookingdom Game Walkthrough: All Levels Walkthrough & Solutions Guide
Step-by-step guides for all levels of Cookingdom, helping you chop, stir, and plate like a pro while soaking in the chill vibes.
Cookingdom
Cookingdom All Levels Walkthrough

Answered question
You are viewing 1 out of 4 answers, click here to view all answers.