Hey again,
woohoo fetching from external Website is working now for me.
What I did…
- created a Text(A) column called “githublink” an pasted the url show code
- created a JavaScript column called “JS fetch from github”
- I used the JavaScript code from @Eric_Penn
const response = await fetch(p1);
const data = await response.json();
const jsonData = JSON.stringify(data);
return jsonData;
- p1 is pointing to (A) githublink
- created a regular Template column called “template for JSON Query”
- finaly the last Step Query the JSON
Now hopefuly the last question…
what is faster and uses less resources, Jeffs or Erics method?
Thank’s
Alex