sony-lifelog-api

Regarding Sony’s Lifelog API close down

99封情书 提交于 2019-12-24 06:59:16
问题 As, Sony’s Lifelog API was closed down at the end of May 2017. Does there exist any alternative for a developer, meanwhile? 回答1: Unfortunately there is not a publicly available SDK for accessing the data directly. 回答2: You should actually be able to use the Google Fit API to pull fitness data for your needs. You can even use it to pull heart rate data from the SmartBand 2. https://developers.google.com/fit/ 来源: https://stackoverflow.com/questions/44604451/regarding-sony-s-lifelog-api-close

Lifelog API Explorer: Authorization request could not be completed

坚强是说给别人听的谎言 提交于 2019-12-12 02:56:59
问题 I'd like to use the lifelog api for my own webapplication to store my own data and adapt it to my needs. I tried looking into it but unfortunately I'm not able to get the api explorer (to see how it works) to work. When I try to use the Authenthication OAuth2 and log in to my google account it constantly gives me the following error: Authorization request could not be completed. Reason: Access token request to API provider failed. If the problem persists, please contact Customer Support.

Can I access Lifelog APIs from my android application

爱⌒轻易说出口 提交于 2019-12-11 23:07:37
问题 When ever I tried to authorize my android application. But It gives me Unauthorized user error.. Can i access lifelog data on my android application using these lifelog REST API's? could some one suggest me the steps to configure my android app to read data from lifelog API's 回答1: What steps have you tried to retrieve data from the API? Are you following the instructions from the Lifelog Authorization page? https://developer.sony.com/develop/services/lifelog-api/authentication/ Some quick

javax.net.ssl.sslpeerunverifiedexception no peer certificate Error In lifelogApi

落花浮王杯 提交于 2019-12-03 23:01:38
问题 We are getting SSL peer unverified error while fetching the access token from Lifelog api. I am able to get the authcode, but when i am trying to get access token, it is giving me SSL peer error. It works fine with few device, but most of the device it is giving SSL error. private void getAccessToken(final String authCode) { final String finalUrl = String.format("https://platform.lifelog.sonymobile.com/oauth/2/token?client_id=%s&client_secret=%s&code=%s",CLIENT_ID,CLIENT_SECRET,authCode);