0

Jawbone UP で Python からユーザーを認証するにはどうすればよいですか。有効な資格情報があれば、Python から認証できます。

4

1 に答える 1

1
email ='your email id'
pwd  = 'your password'
data = urllib.parse.urlencode({'email': email, 'pwd':pwd, 'service': 'nudge'})
data = data.encode('utf-8')
request = urllib.request.Request("https://jawbone.com/user/signin/login")
# adding charset parameter to the Content-Type header.
request.add_header("Content-Type","application/x-www-form-urlencoded;charset=utf-8")
f = urllib.request.urlopen(request, data)
#print(f.read().decode('utf-8'))
j=(f.read().decode('utf-8'))
b=json.loads(j)

現在、json オブジェクト b には、名前、体重などのユーザーに関するすべてのデータが含まれています.......

于 2013-12-26T11:40:34.507 に答える