Ricerca…


Effettuare un callout in uscita

Questo è un esempio su come chiamare un servizio web da salesforce. Il codice seguente chiama un servizio basato su REST ospitato su data.gov per trovare mercati degli agricoltori vicino al codice postale.

Ricordare che per richiamare un callout HTTP dall'organizzazione, è necessario modificare le impostazioni remote per l'organizzazione.

string url= 'http://search.ams.usda.gov/farmersmarkets/v1/data.svc/zipSearch?zip=10017';
Http h = new Http();
HttpRequest req = new HttpRequest();
HttpResponse res = new HttpResponse();
req.setEndpoint(url);
req.setMethod('GET');
res = h.send(req);
System.Debug('response body '+res.getBody());


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow