Skip to content

Instantly share code, notes, and snippets.

@swapnilshrikhande
Last active April 28, 2016 15:26
Show Gist options
  • Save swapnilshrikhande/6e79b75213b0bdc52acd02d5738ed4f5 to your computer and use it in GitHub Desktop.
Save swapnilshrikhande/6e79b75213b0bdc52acd02d5738ed4f5 to your computer and use it in GitHub Desktop.
AuthCallout basic authentication salesforce
public class AuthCallout {
public void basicAuthCallout(){
HttpRequest req = new HttpRequest();
req.setEndpoint('http://www.yahoo.com');
req.setMethod('GET');
// Specify the required user name and password to access the endpoint
// As well as the header and header information
String username = 'myname';
String password = 'mypwd';
Blob headerValue = Blob.valueOf(username + ':' + password);
String authorizationHeader = 'Basic ' +
EncodingUtil.base64Encode(headerValue);
req.setHeader('Authorization', authorizationHeader);
// Create a new http object to send the request object
// A response object is generated as a result of the request
Http http = new Http();
HTTPResponse res = http.send(req);
System.debug(res.getBody());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment