Constructing requests with URL Query String in Python
To perform GET requests with URL query string: import requests params = { ‘action’: ‘subscribe’, ‘callbackurl’: ”, ‘comment’: ”, ‘oauth_consumer_key’: ”, ‘oauth_nonce’: ”, # more key=value pairs as appeared in your query string } r = requests.get(“http://wbsapi.withings.net/notify”, params=params) With that cleared, now you just need to follow the workflow documented on http://www.withings.com/en/api/oauthguide and implement them … Read more