-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Is there a way to concatenate a string literal with a value pulled during web scraping (json dot notation) #6565
Description
Discussed in #6561
Originally posted by Bhuemann June 14, 2024
So I am trying to create a feed from Netflix job postings. I have pulled their API call and have been able to create a feed from it using an arbitrary choice for URL.
However the response here does not return the full job URL, just the slug. So I would like to concatenate the base address with the slug something like so:
strcat("https://jobs.netflix.com/jobs/", external_id)
Or
"https://jobs.netflix.com/jobs/" + external_id
I've tried both but they don't seem to work and I couldn't find any documentation on this. Is this possible?
Note: I have noticed that if I just put the external_id in the url field, the feed items generated are prefixed with "https://jobs.netflix.com/api/" which I don't know where this value comes from and if it can be changed to the correct base address
