如何使用Python响应HTTP get请求

时间:2018-05-23 16:29:26

标签: php python python-2.7 get

我正在构建的webhook需要响应HTTP GET请求,其中一个正文包含查询参数的值。

HTTP GET如下所示:

获取https://example.com?challenge=8ec8d794-e0ab-42df-9017-e3dada8e84f7

这个PHP脚本有效......

<?php
 header('Content-Type: text/plain');
 echo $_GET['challenge']; 
?>

我如何在Python中复制它?理想情况下,无需在Python中执行PHP脚本。

谢谢,

0 个答案:

没有答案