Man*_*ava 2 android callback fitbit
我正在开发一个与医学相关的应用程序,我必须在我的应用程序中实现FitBit设备.
我正在关注它的FitBit开发人员工具,但我无法集成它,如果我在没有FitBit库的情况下手动操作,我无法在身份验证后备份我的应用程序.
我的代码如下 -
private void login() {
try {
HttpResponse response = null;
HttpParams httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters, 20000);
HttpConnectionParams.setSoTimeout(httpParameters, 20000);
HttpClient client = new DefaultHttpClient(httpParameters);
HttpGet request = new HttpGet(
"http://api.fitbit.com/oauth/request_token?oauth_consumer_key=7af733f021f649bcac32f6f7a4fe2e9a&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1358921319&oauth_nonce=456236281&oauth_callback=http://www.androidhub4you.com/&oauth_version=1.0&oauth_token=5cefb18d2a80073520211f03f8d75321&oauth_signature=QdVUzMvT6tveGyoPu%2BEevzvo07s%3D");
response = client.execute(request);
BufferedReader rd = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
String webServiceInfo = "";
while ((webServiceInfo = rd.readLine()) != null) {
Log.e("****Step 1***", "Webservice: " + webServiceInfo);
authToken = webServiceInfo.substring(12, 44);
Log.e("Auth token:", "Webservice: " + authToken);
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
}
Run Code Online (Sandbox Code Playgroud)
在获得authToken之后,我打开了一个网页,但我无法再次使用我的应用程序.
private void openURL() {
webView.loadUrl("https://www.fitbit.com/oauth/authorize?oauth_token="
+ authToken + "&display=touch");
}
Run Code Online (Sandbox Code Playgroud)
最后我得到了回答我自己的问题 -
try {
HttpResponse response = null;
HttpParams httpParameters = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParameters, 20000);
HttpConnectionParams.setSoTimeout(httpParameters, 20000);
HttpClient client = new DefaultHttpClient(httpParameters);
HttpGet request = new HttpGet(
"http://api.fitbit.com/oauth/request_token?oauth_consumer_key=7af733f021f649bcac32f6f7a4fe2e9a&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1358921319&oauth_nonce=456236281&oauth_callback=http://www.androidhub4you.com/&oauth_version=1.0&oauth_token=5cefb18d2a80073520211f03f8d75321&oauth_signature=QdVUzMvT6tveGyoPu%2BEevzvo07s%3D");
response = client.execute(request);
BufferedReader rd = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
String webServiceInfo = "";
while ((webServiceInfo = rd.readLine()) != null) {
Log.e("****Step 1***", "Webservice: " + webServiceInfo);
authToken = webServiceInfo.substring(12, 44);
Log.e("Auth token:", "Webservice: " + authToken);
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)
在那之后-
String fitUrl = "https://www.fitbit.com/oauth/authorize?oauth_token="
+ authToken +"&display=touch";
webView.loadUrl(fitUrl);
Intent intent = new Intent(FitBitActivity.this, DashboardActivity.class);
pActivity.finishChildActivity(intent);
Run Code Online (Sandbox Code Playgroud)
编辑: 你可以从这里下载邮政编码 -
http://www.androidhub4you.com/2013/11/fitbit-integration-in-android-login.html
https://github.com/manishsri01/FitbitIntegration
| 归档时间: |
|
| 查看次数: |
5286 次 |
| 最近记录: |