关于Python的一点线索我正在尝试使用Android Device Manager从requests获取位置数据。我正在尝试以与Apple设备pyiCloud相同的方式显示来自Android设备的JSON位置Feed。
现在作为公关。我没有比简单更进一步:
import time, requests
r = requests.get('https://www.google.com/android/devicemanager', auth=(GoogleUsername, GooglePassword ))
f = open('dump.html', 'w+')
tmst = time.strftime('%H:%M:%S')
f.write(tmst + '<br>')
f.write(r.text)
f.close
给我登录界面。任何人吗?
我的目的是从我的Android设备获取实时位置数据,而无需在设备上安装任何应用程序或类似设备。只需从Android设备管理器中抓取数据,或者可以通过Google+ Location Sharing解决这个问题?