我正在尝试围绕(例如)Nest应用创建包装应用。基本上,我想从经过身份验证的页面上抓取内容。到目前为止,两种方法对我没有用:
方法1:页面不变。
这是我的代码:
$("div form input[name=email]").value = "my_email@gmail.com";
$('div form input[name=password]').value = "my_password";
$("div form").submit();
方法2:400错误的请求错误
我认为这是由于他们采用了一种安全措施来检查查询的主机名。
这是我的代码(python):
params1 = {'email': "my_email@gmail.com", 'password': "my_password"};
url1 = "https://home.nest.com/session"
r = requests.post(url=url1, params=params1).json() # Response: 400 Bad request
print(r)
url2_ok = "https://home.nest.com/js/_vendors_/lib/phoenix-sdk/sdk-d4875ffcb3865568f87f.js "
params3 = r["user"][-8] #gets user id
url3 = "https://home.nest.com/api/0.1/user/"+ params3 + "/app_launch"
r2 = requests.get(url=url3, params=params3).json()
print(r2)