an API.
The JSON includes multiple objects and each object has 3 pairs of key/value. One of the keys is a url that is sent like this:
https://static-cdn.jtvnw.net/ttv-boxart/Red%20Dead%20Redemption%202-{width}x{height}.jpg
Now I want to format all the links in the JSON to replace "{width}" and "{height}" with a desired number to make it look like this:
https://static-cdn.jtvnw.net/ttv-boxart/Red%20Dead%20Redemption%202-200x200.jpg
How can I do this? Just could not find any solution from Google (using .replace(), etc.)
Url is a key?
[ { "id": "509658", "name": "Just Chatting", "box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/Just%20Chatting-{width}x{height}.jpg" } ] this is an actual JSON example but with only one object in it. i usually get 100 objects
Url is a value right, its not a JSON key
yep the URL is a value for box_art_url key
And you can use .replace
I did try to use that, but since there are 100 objects I have to put the .replace in a for loop
Обсуждают сегодня