Question 17
Consider the following endpoints created with a working setup of flask-security and flask-sqlalchemy.
Three requests are made to this application: GET /api/open (no authentication headers)1. GET /api/secure (no authentication headers)2. GET /api/superuser with valid authentication token but user has role 'basic' (not 'superuser')3. What will be the response status codes for these requests, respectively?
200, 200, 200
200, 401, 403
200, 403, 401
401, 403, 403