Last active
January 7, 2021 06:04
-
-
Save douglascayers/edd79ebe9114068b3f5a to your computer and use it in GitHub Desktop.
Salesforce apex service to make http callout to Bitly url shortener service. The .java extension is just for syntax highlighting, save them as .cls in your project.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Simple service to make http callout to Bitly url shortener service. | |
*/ | |
public class BitlyService { | |
/** | |
* Given a long URL will return the shortened version. | |
* https://dev.bitly.com/api-reference#createBitlink | |
*/ | |
public String shorten(String url) { | |
HttpRequest req = new HttpRequest(); | |
req.setEndpoint('callout:Bitly/v4/shorten'); | |
req.setMethod('POST'); | |
req.setHeader('Authorization', 'Bearer {!$Credential.Password}'); | |
req.setHeader('Accept', 'application/json'); | |
req.setHeader('Content-Type', 'application/json'); | |
req.setBody(JSON.serialize(new Map<String, Object>{ | |
'group_guid' => '{!$Credential.UserName}', | |
'long_url' => url | |
})); | |
HttpResponse res = new Http().send( req ); | |
Map<String, Object> response = (Map<String, Object>) JSON.deserializeUntyped(res.getBody()); | |
return (String) response.get('link'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The BitlyService I blogged about here: https://douglascayers.wordpress.com/2015/10/21/salesforce-create-short-urls-with-bitly-process-builder-and-apex/
Gist to the apex tests are here: https://gist.github.com/DouglasCAyers/de978590b97e235a96fc