Skip to content

Instantly share code, notes, and snippets.

@karanrajs
Created September 1, 2015 18:14
Show Gist options
  • Save karanrajs/6884043b3f88388fcb0c to your computer and use it in GitHub Desktop.
Save karanrajs/6884043b3f88388fcb0c to your computer and use it in GitHub Desktop.
@AuraEnabled public static string getUserDetails() {
HttpRequest req = new HttpRequest();
Http http = new Http();
req.setMethod('GET');
req.setEndpoint('callout:Fitbit/1/user/-/profile.json');
HttpResponse res = http.send(req);
return res.getBody();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment