欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用requests访问必应在线翻译

程序员文章站 2022-05-28 12:10:47
...

@导包

import requests
import json

@在浏览器中访问必应在线翻译首页,抓包获得相应的请求头

# 请求必应在线翻译首页,通过在浏览器中访问抓包请求头
headers_1 = {
    'Host': 'www.bing.com',
    'Connection': 'keep-alive',
    'Cache-Control': 'max-age=0',
    'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',
    'Upgrade-Insecure-Requests': '1',
    'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
    'Accept-Encoding': 'gzip, deflate',
    'Accept-Language': 'zh-CN,zh;q=0.9',
}

@通过session对象访问必应在线翻译首页,后续访问翻译服务必须通过该回话发起

# 必应在线翻译的地址
url_str = 'http://www.bing.com/translator/?mkt=zh-CN'

# 通过session对象发起请求
sess = requests.session()
res = sess.get(url=url_str, headers=headers_1)
# print(res.status_code)
# print(res.cookies)

@在浏览器中使用在线翻译,抓包获得相应的请求头格式

# 在线翻译API请求头,通过在浏览器中访问抓包获得
headers_2= {
    'Host': 'www.bing.com',
    'Connection': 'keep-alive',
    # 'Content-Length': '31',
    'Accept': 'application/json, text/javascript, */*; q=0.01',
    'Origin': 'http://www.bing.com',
    'X-Requested-With': 'XMLHttpRequest',
    'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36',
    'Content-Type': 'application/json; charset=UTF-8',
    'Referer': 'http://www.bing.com/translator/?mkt=zh-CN',
    'Accept-Encoding': 'gzip, deflate',
    'Accept-Language': 'zh-CN,zh;q=0.9',
}

@在线翻译API是一个POST请求,我们同样通过抓包来获取其form参数样式
使用requests访问必应在线翻译

@通过访问首页的session会话对象,携带正确的请求头和表单参数发起翻译请求

# 在线翻译API请求地址,这是一个POST请求,必须由访问首页的会话发起,否则无法获得服务
url_str = 'http://www.bing.com/translator/api/Translate/TranslateArray?from=-&to=en'

# 请求携带的参数,由页面控制台或抓包获知其格式
# info = [{"id":652829,"text":"你好"}]
info = json.dumps([{"id":652829,"text":"汽车"}])
print(info)

# 由访问首页的会话session发起POST请求
# response = requests.post(url=url_str, data=info, headers=header_base)
response = sess.post(url=url_str, data=info, headers=headers_2)

# 打印结果
print(response.status_code)
print(response.text)

@翻译结果
使用requests访问必应在线翻译