ajax爬取今日头条街拍图片——data出现none的解决
2021-04-21 01:27
标签:urllib name http 不同 use 专业 ued agent content 1)得到想要结果,所构造的url中keyword=******与下一参数间没有&链接 2)同样的keyword=%E8%A1%97%E6%8B%8D,参用不同的方式:‘https://www.toutiao.com/api/search/content/?keyword=%E8%A1%97%E6%8B%8D’+urlencode(params) requests.get(‘https://www.toutiao.com/api/search/content/?’,params=params) 得到的url结果是不一样的,前一个的keyword不变,还是%E8%A1%97%E6%8B%8D,后一种方式得到的keyword变成了%25E8%25A1%2597%25E6%258B%258D ajax爬取今日头条街拍图片——data出现none的解决 标签:urllib name http 不同 use 专业 ued agent content 原文地址:https://www.cnblogs.com/fran-py-/p/12253039.html
import requests
from urllib.parse import urlencode
def get_page(offset):
params={
‘aid‘:24,
‘app_name‘:‘web_search‘,
‘format‘:‘json‘,
‘offset‘:offset,
‘autoload‘:‘true‘,
‘count‘:20,
‘en_qc‘:1,
‘cur_tab‘:1,
‘from‘:‘search_tab‘,
‘pd‘:‘synthesis‘
}
headers={
‘X-Requested-With‘:‘XMLHttpRequest‘,
‘Cookies‘:‘tt_webid=6788393831844185614; WEATHER_CITY=%E5%8C%97%E4%BA%AC; tt_webid=6788393831844185614; csrftoken=0fd39b0f026752a8f38a902ab9226d44; s_v_web_id=k64mh7pe_9IueD6zl_X1iG_4smt_8Dkd_SMrb5NXXMR8G; __tasessionId=naf9b8ylp1580623604878‘,
‘Host‘:‘www.toutiao.com‘,
‘Referer‘:‘https://www.toutiao.com/search/?keyword=%E8%A1%97%E6%8B%8D‘,
‘User-Agent‘:‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36‘
}
try:
url=‘https://www.toutiao.com/api/search/content/?keyword=%E8%A1%97%E6%8B%8D‘+urlencode(params)
response=requests.get(url,headers=headers)
response.raise_for_status
response.encoding=response.apparent_encoding
print(response.url)
return response.json()
except:
print(‘爬取出错‘)
上一篇:jQUery的基本操作总结
文章标题:ajax爬取今日头条街拍图片——data出现none的解决
文章链接:http://soscw.com/index.php/essay/77379.html