python获取ajax的post,使用Python请求模拟ajax POST调用

在解析特定网站视频数据的项目中,通过分析JavaScript代码找到了隐藏的视频链接。利用jQuery的Ajax进行POST请求,目标是/ajaxdata.php。在Live HTTP Headers中观察到请求头和参数。尝试用Python的requests库模拟POST请求,起初未成功,但添加了正确的请求头后,如User-Agent、Accept等,成功获取了内容。
摘要由CSDN通过智能技术生成

I'm doing a project where my parser steals gets data about every video on the specific site and save it to my database. I have accomplished everything except full link to the video which is hidden.

There is a player, which automaticaly starts on page load. I have found the JavaScript code which starts the player:

function getVidData(resolution, init) {

<< some code here >>

jQuery.ajax({type: 'POST', url: '/ajaxdata.php', dataType: 'json', data: 'mod=videodata&vid=48902&res=' + resolution, success: function (response) {

if (response.error != '' && response.error != undefined) {

<< error handling code here >>

} else {

StartPlayer(response.width, response.height, response.filename);

}

<
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值