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.
URL: https://jobs.netflix.com/api/search?q=software&location=Remote%2C%20United%20States
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
