Zhen Hao
Results
1
comments of
Zhen Hao
> I think just remove ncform in function get_token, it will work. `def _get_tokens(body): """Get`csrf_token`and`__ncforminfo`.""" csrf = re.findall(r'name="csrf" value="(.+?)"', body)[0] ncform = re.findall(r'name="__ncforminfo" value="(.+?)"', body)[0] ` yes it works! just...