10-09-2014 13:26
10-09-2014 13:26
So my use case is after the oauth is done with all the 4 parameters consumer key, token and access token,secret, I need to pass these details to our custom product application to make the final call and get user details.
I can use Java to make the call. Please advise or guide me how to go about.
I already have a Java working code from end - end where user is directed to authorize and we get the pin and then make the call. But I need to delgate these details to other applciation which make the call
Hope my question makes sense.
Thanks in advance
10-09-2014 14:17
10-09-2014 14:17
Hello,
Seems that you successfully authorized your app and can make Fitbit API requests.
The problem you having now is sort of not related to what Fitbit API provides.
How ever I can suggest you can do this at least these two ways:
1) save all required data to make Fitbit API requests saved into DB that is accessible by the java application you're making actual api requests with
2) use secure data protocol so you can pass all required credentials to Java application that actually makes Fitbit API calls.
It's all up to you what technics to use