Wordpress Plugin Development How to implement receive JSON data

Source: Internet
Author: User
Plug-in implementation is required first, submit comments JSON data to a specific path, and then process the data.

Attempts to add hooks to parse the requested action.

function sync_comment($obj){    test($_POST);}add_action( 'parse_request', 'sync_comment' );

In fact, it is not feasible to get only GET the data that POST is empty.

Do not know is not cross-domain security issues, not familiar with WordPress, more tricky.

Find solution suggestions.

Reply content:

Plug-in implementation is required first, submit comments JSON data to a specific path, and then process the data.

Attempts to add hooks to parse the requested action.

function sync_comment($obj){    test($_POST);}add_action( 'parse_request', 'sync_comment' );

In fact, it is not feasible to get only GET the data that POST is empty.

Do not know is not cross-domain security issues, not familiar with WordPress, more tricky.

Find solution suggestions.

Check found that the request header is not committed can Content-Type: application/x-www-form-urlencoded not parse $_post
It's better to change the solution.

$data = json_decode(file_get_contents("php://input"));
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.