我试图在" https://www.investing.com"中执行符号搜索,我检查了检查工具,找出了搜索中使用的确切帖子请求。 post request
所以我使用代码:
url = 'http://www.investing.com/search/service/search'
header = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36',
}
form_data = {
'search_text': symbol,
'term': symbol,
'country_id': '0',
'tab_id': 'All'
}
response = requests.post(url, data = form_data, headers = header)
试图登陆网址:" https://www.investing.com/equities/stamps.com-inc"
但是,响应总是引导我进入主页(https://www.investing.com) 我试图在检查工具中包含所有与之匹配的标题,但仍然没有运气。 有人可以帮我吗?