Advertisement
Guest User

Untitled

a guest
Jan 31st, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. public PageReference find() {
  2.  
  3. HttpRequest req = new HttpRequest();
  4. HttpResponse res = new HttpResponse();
  5. Http http = new Http();
  6.  
  7. String url = 'http://clozer.3spire.net/public/user/'+strTag+'/'+cities;
  8.  
  9. req.setEndpoint(url);
  10. req.setMethod('GET');
  11.  
  12. //these parts of the POST you may want to customize
  13. req.setCompressed(false);
  14. req.setBody('key1=value1&key2=value2');
  15. req.setHeader('Content-Type', 'application/json');
  16.  
  17. try {
  18. res = http.send(req);
  19. } catch(System.CalloutException e) {
  20. system.debug('Callout error: '+ e);
  21. //result = ''+e;
  22. }
  23.  
  24. data = (Map<String, Result>)JSON.deserialize(res.getBody(),Map<String, Result>.class);
  25.  
  26. lstResultWrapper = new List<ResultWrapper>();
  27. for(Result obj: data.values())
  28. {
  29. lstResultWrapper.add(new ResultWrapper(obj));
  30. }
  31.  
  32. return null;
  33. }
  34.  
  35. {"0":{"description ":"","person_name":"Justin Townsley","email":"jlt@staranchor.com","exparience":null,"location":"Unknown"},"1":{"description ":"","person_name":"Dan Anderson","email":"danandersonmobile@yahoo.com","exparience":null,"location":"Unknown"},"2":{"description ":"","person_name":"Artak Robert Melkonyan","email":"artakrobert@gmail.com","exparience":null,"location":"Unknown"},"3":{"description ":"","person_name":"Sanjay Anandaram","email":"sanjayanandaram@gmail.com","exparience":null,"location":"Unknown"},"4":{"description ":"","person_name":"Katia Gaika","email":"katia.gaika@gmail.com","exparience":null,"location":"Unknown"},"5":{"description ":"","person_name":"Sidnei Gonu008dalves","email":"sidnei.goncalves@up2place.com.br","exparience":null,"location":"Unknown"},"6":{"description ":"","person_name":"Michel Koch","email":"michelkoch@hotmail.com","exparience":null,"location":"Unknown"},"7":{"description ":"","person_name":"Shannon Lydell Carter, MBA Technolo","email":"Shannon@truegame.com","exparience":null,"location":"Unknown"},"8":{"description ":"","person_name":"Jacob Hagemann","email":"jhagemann@gmail.com","exparience":null,"location":"Unknown"},"9":{"description ":"","person_name":"Amaresh Ramaswamy","email":"amareshr@live.com","exparience":null,"location":"Unknown"}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement