Python equivalent to PHP Post


Python equivalent to PHP Post

我正在使用遗留系统,以前的程序员已经离开了。这是他留下的测试,我不知道如何用Python模仿他的测试。

这是test.php

var tHost = "10.1.10.123";
var tExiname = "CloudHM TEST123";
var tIncname = "INC012345";
var tHWname = "aa 1111 0";
var tHwattr = "all";
var tStatus = 0;
var tCteatedat = "2016-05-23 12:20:42";
var d = new Date,
tUpdateat = [d.getFullYear(),
             d.getMonth()+1,
             d.getDate()].join('-')+' '+
          [d.getHours(),
           d.getMinutes(),
           d.getSeconds()].join(':');
var arr =  [{ host: tHost, host_name: tExiname, component_type: tHWname, component_status: tStatus, incident_created: tUpdateat }];
var arr2 =JSON.stringify(arr)
$.ajax({
    url: 'http://customer.beenets.net/api/cloudhm/api.php' ,
    type: 'POST',
    data: { params: arr2 },
    success: function(msg) {
        //ShowOutput(msg);
        alert(JSON.stringify(arr, null, 4));
    }
})

我试过了。响应是200,但是PHP服务器没有读取负载

notification_data = [{
            "host": i.host,
            "host_name": i.host_name,
            "incident_created": i.incident_created,
            "component_type": i.component_type,
            "component_status": i.component_status
        }]
        response = requests.post(NOC_BEENETS_URL, data=json.dumps(notification_data))

然后我试着把params键放在它前面

notification_data = [{
    "params":{
        "host": i.host,
        "host_name": i.host_name,
        "incident_created": i.incident_created,
        "component_type": i.component_type,
        "component_status": i.component_status
    }
}]
response = requests.post(NOC_BEENETS_URL, data=json.dumps(notification_data))

编辑:

notification_data = [{
        "host": i.host,
        "host_name": i.host_name,
        "incident_created": i.incident_created,
        "component_type": i.component_type,
        "component_status": i.component_status
    }]
r = requests.post(NOC_BEENETS_URL, data = {'params': json.dumps(notification_data)})