Skip to content

Commit 8431085

Browse files
julianpistoriusdlebauer
authored andcommitted
The Clowder file URL in the Python example is incorrect. It's missing a '/blob' at the end. (#206)
1 parent 8721c67 commit 8431085

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

videos/second_walkthrough.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Can see if it works by running object, should return a 200 message.
109109
```{python, eval=FALSE}
110110
import requests
111111
112-
file_url = 'https://terraref.ncsa.illinois.edu/clowder/files/5c5488fa4f0c4b0cbe7af98a'
112+
file_url = 'https://terraref.ncsa.illinois.edu/clowder/files/5c5488fa4f0c4b0cbe7af98a/blob'
113113
api_key = {'key': ''}
114114
file_request = requests.get(file_url, api_key)
115115
file_request

videos/second_walkthrough.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Can see if it works by running object, should return a 200 message.
181181
``` python
182182
import requests
183183

184-
file_url = 'https://terraref.ncsa.illinois.edu/clowder/files/5c5488fa4f0c4b0cbe7af98a'
184+
file_url = 'https://terraref.ncsa.illinois.edu/clowder/files/5c5488fa4f0c4b0cbe7af98a/blob'
185185
api_key = {'key': ''}
186186
file_request = requests.get(file_url, api_key)
187187
file_request

0 commit comments

Comments
 (0)