Created
September 27, 2019 20:24
-
-
Save zuzannamj/48c8d397151becd9ffc16c2c8ad3c0e2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
%%[ | |
var @apikey, @url, @response | |
set @apikey = Lookup("NASAapi","apikey","id","apod") // keep your apikey in a Data Extension | |
set @apikey = "7Apb3QN7qVsXPuPDcSZBKAPf8twca03C5w4Oxuyc" // or hardcode it into your CloudPage | |
set @url = concat('https://api.nasa.gov/planetary/apod?api_key=',@apikey) | |
set @response = HTTPGET(@url,false,0,@CallStatus) | |
]%% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment