Skip to content

Commit

Permalink
Fix broken Flask-CORS link in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickJadoul committed Jun 14, 2024
1 parent 0e9e35c commit b6595d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/web_service.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Again, one thing to take into account is the security of running such a web server. However, apart from deploying the flask server in a secure and performant way, we also need one extra thing to circumvent a standard security feature of the browser. Without handling Cross Origin Resource Sharing (CORS) on the server, the JavaScript code on the client side will not be able to access the web service's reply. A Flask extension exists however, [Flask-CORS](https://flask-cors.readthedocs.io/), and we refer to its documentation for further details."
"Again, one thing to take into account is the security of running such a web server. However, apart from deploying the flask server in a secure and performant way, we also need one extra thing to circumvent a standard security feature of the browser. Without handling Cross Origin Resource Sharing (CORS) on the server, the JavaScript code on the client side will not be able to access the web service's reply. A Flask extension exists however, [Flask-CORS](https://flask-cors.readthedocs.io/en/latest/), and we refer to its documentation for further details."
]
},
{
Expand Down

0 comments on commit b6595d3

Please sign in to comment.