首页 > 后端开发 > Python教程 > python pycurl验证basic和digest认证的方法

python pycurl验证basic和digest认证的方法

不言
发布: 2018-05-02 13:48:11
原创
2426 人浏览过

这篇文章主要介绍了python pycurl验证basic和digest认证的方法,现在分享给大家,也给大家做个参考。一起过来看看吧

简介

pycurl类似于Python的urllib,但是pycurl是对libcurl的封装,速度更快。

本文使用的是pycurl 7.43.0.1版本。

Apache下配置Basic认证

生成basic密码文件

1

htpasswd -bc passwd.basic test 123456

登录后复制

开启mod_auth_basic

1

LoadModule auth_basic_module modules/mod_auth_basic.so

登录后复制

配置到具体目录

1

2

3

4

5

6

<Directory "D:/test/basic">

  AuthName "Basic Auth Dir"

  AuthType Basic

  AuthUserFile conf/passwd.basic

  require valid-user

</Directory>

登录后复制

重启Apache

Apache下配置Digest认证

生成Digest密码文件

1

htdigest -c passwd.digest "Digest Encrypt" test

登录后复制

开启mod_auth_digest

1

LoadModule auth_digest_module modules/mod_auth_digest.so

登录后复制

配置到具体目录

1

2

3

4

5

6

7

<Directory "D:/test/digest">

  AuthType Digest

  AuthName "Digest Encrypt" # 要与密码的域一致

  AuthDigestProvider file

  AuthUserFile conf/passwd.digest

  require valid-user

</Directory>

登录后复制

重启Apache

验证Basic认证

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

# -*- coding: utf-8 -*-

import pycurl

try:

  from io import BytesIO

except ImportError:

  from StringIO import StringIO as BytesIO

buffer = BytesIO()

c = pycurl.Curl()

c.setopt(c.URL, &#39;http://test/basic/&#39;)

c.setopt(c.WRITEDATA, buffer)

c.setopt(c.HTTPAUTH, c.HTTPAUTH_BASIC)

c.setopt(c.USERNAME, &#39;test&#39;)

c.setopt(c.PASSWORD, &#39;123456&#39;)

c.perform()

print(&#39;Status: %d&#39; % c.getinfo(c.RESPONSE_CODE))

print(buffer.getvalue())

c.close()

登录后复制

验证Digest认证

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

# -*- coding: utf-8 -*-

import pycurl

try:

  from io import BytesIO

except ImportError:

  from StringIO import StringIO as BytesIO

buffer = BytesIO()

c = pycurl.Curl()

c.setopt(c.URL, &#39;http://test/digest/&#39;)

c.setopt(c.WRITEDATA, buffer)

c.setopt(c.HTTPAUTH, c.HTTPAUTH_DIGEST)

c.setopt(c.USERNAME, &#39;test&#39;)

c.setopt(c.PASSWORD, &#39;123456&#39;)

c.perform()

print(&#39;Status: %d&#39; % c.getinfo(c.RESPONSE_CODE))

print(buffer.getvalue())

c.close()

登录后复制


以上是python pycurl验证basic和digest认证的方法的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
python - ubuntu16.04 lxml的报错
来自于 1970-01-01 08:00:00
0
0
0
有办法在PHP里写Python吗?
来自于 1970-01-01 08:00:00
0
0
0
python scrapy爬虫错误
来自于 1970-01-01 08:00:00
0
0
0
python相关问题求解决,有偿
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板