Replies: 1 comment 2 replies
-
|
Have you tried xml:base? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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_idI'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
Beta Was this translation helpful? Give feedback.
All reactions