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
the LifeLog API is a RESTful API, meaning, you can, in theory, access it from anywhere as long as you can create
HTTP
requests. The authentication used is standardOauth2
which also is defacto used by most APIs like Google, Facebook, Twitter etc.Other than that, there are a couple of Android libraries available which can make your life a lot easier, wrapping the HTTP requests into simple Java objects and methods.
https://github.com/championswimmer/Lifelog-Android-Library
https://github.com/yaeda/lifelog-android-sdk
Disclaimer: The first library linked has been co-authored by me
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 things you can do are: