Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

20 Zeilen
937 B

  1. def handle_authenticate(context):
  2. """
  3. This function is invoked whenever a user tries to access protected HTTP resources.
  4. This function must exist and return a proper value. Otherwise the request is denied.
  5. All authentication data must be sent via using the "Authorization" header. This header
  6. will be parsed and all values will be exposed to the context.
  7. """
  8. header_value = context["header_value"] # The untouched header value.
  9. scheme = context["scheme"]
  10. parameter = context["parameter"]
  11. username = context["username"] # Only set if proper "Basic" authorization is used.
  12. password = context["password"] # Only set if proper "Basic" authorization is used.
  13. context["is_authenticated"] = True # Change this to _False_ in case of invalid credentials.
  14. # Example for an API key with proper format.
  15. if header_value == "APIKey 123456":
  16. context["is_authenticated"] = True