Questions tagged [withings]

Withings is a company that makes hardware and software to track body metrics and health statistics. The Withings API allows developers to access a user’s stored data.

API Documentation and access registration is located at the Withings Developer Center.

47 questions
0
votes
1 answer

Nokia-Withings Oauth2 Get Authentification Code

I do struggle to get the Nokia-Withings OAuth2 flow working with a flask app running on the localhost. I have made sure that in the /etc/hosts I have a redirect from callback url (nokia.velometria.com) to the 127.0.0.1 to make sure that all callback…
0
votes
1 answer

How to read temperature from Nokia Health Api?

When reading the temperature from the Nokia health API, I am getting the following readings. However, these are not correct. In the Nokia app, the readings in Celsius are as follows: 35C { value: 26918, type: 12, unit: -3 } 35.6C { value: 23569,…
Sheik797
  • 435
  • 4
  • 16
0
votes
1 answer

Nokia/Withings API returning 342

I am trying to invoke Nokias Get Body Measures api https://api.health.nokia.com/measure?action=getmeas Today, I have followed all the steps at https://developer.health.nokia.com/api but at the end of it i get the below mentioned 342…
N.D.
  • 1
  • 1
0
votes
1 answer

Withings API - Invalid signature

I am trying to get access to my Withings/Nokia scales data via oauth (.net core C#). Instructions can be found at: https://oauth.withings.com/en/api/oauthguide And API guide here: https://developer.health.nokia.com/api#step1 I have achieved Part 1 -…
DanAbdn
  • 7,151
  • 7
  • 27
  • 38
0
votes
1 answer

Withings Returning 503 : Invalid Params

I'm trying to connect to the withings API using RestSharp. But it is return an error to me, 503 : Invalid Params. Client try { var client = new RestClient(ResourceUrl) { Authenticator =…
Antarr Byrd
  • 24,863
  • 33
  • 100
  • 188
0
votes
1 answer

Withings API integration in android

I am building Android App which shows Withings user's activity data in my Application. But when I am trying to call refresh_token…
Nikita Shah
  • 156
  • 10
0
votes
1 answer

How do I sign access token request withings oauth 1.0

I am currently working on connecting the withings api via web and have been able to automate getting token secret and getting the userId from the callback function inside auth, however when trying to implement step 3 (generating token) I always get…
Chris
  • 391
  • 4
  • 14
0
votes
1 answer

Withings authorization

I've got a problem with getting User Data Access Token from the Withings API (step 3 of the api doc): http://oauth.withings.com/api/doc#api-OAuth_Authentication-access_token Service returns "Invalid signature" error. Here is my methods: private…
VoV4a
  • 91
  • 2
  • 7
0
votes
2 answers

Is it possible to retrieve data from users via Withings API?

I want to automatize the monitoring of some users of Withings products, like gathering informations (weight, heartbeats etc.) every x time. For that purpose I tried to interact with the Withing API, using java (OAuth with a scribe class). I tried…
Malik
  • 207
  • 1
  • 2
  • 14
0
votes
1 answer

Withings Create Notification Always response 342

I have to try Subscribe notification to withings use this doc http://oauth.withings.com/api/doc#api-Notification-notify_subscribe i am using rails I am call OauthUtil from controller oauth = OauthUtil.new oauth.consumer_key =…
0
votes
1 answer

Implementing Withings api in android

I am trying to implement the withings api in android. Able to do the authentication part through "google auth" implementation but not able to access the api as "oauth_nonce" is unknown and I have no idea how to generated it. If you know the process…
kamal_tech_view
  • 4,235
  • 4
  • 28
  • 49
0
votes
1 answer

Withings API: Access Shared User Measurement Data

I am trying to access measurement data for users that have shared access to my Withings account. I can access my own measurement data, but not data for their user ids. Is this access even possible for through the API? Whenever I change the userid to…
Neil
  • 1,813
  • 1
  • 12
  • 20
0
votes
1 answer

Error occurs when logging into Withings OAuth API in IOS

I'm trying to use simple-oauth1 to log into the Withings API. I am able to get the login page to appear, but when I enter my account details and then hit sign in, the page just refreshes instead of taking me to the "authorize app" page. I'm using…
bmueller
  • 2,681
  • 1
  • 27
  • 45
0
votes
1 answer

Signing errors from Withings Rest API

all I have an app that is successfully getting authorized using Withing's api and OAuth. I get the auth page from whitings, and I get the resulting token and verifier, however I can not make requests with those - I keep getting a 342 error: The…
JeremyLaurenson
  • 979
  • 2
  • 11
  • 23
0
votes
1 answer

After authenticating token(ACCESS GRANTED), doesn't redirect to Callback URL

I'm implementing OAuth 1.0 in an iOS app using simple-oauth1 project. I use Withings api so I modified a little bit from simple-oauth1(like consumer oauth key, secret key, callback url...). And I inserted NSLog(request.URL.absoluteString); like…