Please share you Codepen if you have attempted to make the App so that I can guide you properly. For an Idea on how it can be done you can have a look at the below code.
var tweetUrl = "https://twitter.com/intent/tweet?text="+quote+" By "+authorName;
Notice the quote & authorName variables, These variables contain the data that needs to be attached to the URL. So using string concatenation method we can easily combine the URL and the data.
I could not figure out how to insert the concatenated URL and quote into the href="";
I tried using getElementByID but it appears as a text for the link generated.
Yeah you got it. Let me explain if you didn’t get it. For anchor tag to work you need point the href attribute to desired url and that’s what this code is doing.
This can be reverse engineered from the sample. Find what the Twitter link points to by hovering or clicking, split apart the URL, replace the quote/author with variables representing the data you pulled from the API, and concatenate.
I didn’t look into the example code because I thought that we are not allowed to do so… I’m not really sure how the reverse engineer term is defined in this context
Reverse engineering means analysing the end product and figuring out how to make it work, not looking at the source code and copying it. It’s true the lines are a bit more blurred when everything’s front end, but if you’re copying stuff it’s not truly “reverse engineering”.
In this case, as I mentioned, you can find the URL by hovering or clicking on the link. Then you just have to work out which part(s) are variables and how to get them using the API you’ve chosen.