Azure / Azure/azure-storage-python

Server failed to authenticate error when metadata values contain trailing whitespace

Abierto
#628 0 comentarios 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
Python
Estrellas
343
Forks
243
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

### Which service(blob, file, queue) does this issue concern?
blob

### Which version of the SDK was used? Please provide the output of `pip freeze`.
azure-common==1.1.23
azure-storage-blob==2.1.0
azure-storage-common==2.1.0

### What problem was encountered?
Call to ` create_blob_from_bytes()` throws an error [azure.common.AzureHttpError] when any of the metadata values have leading or trailing whitespace.

```
azure.common.AzureHttpError: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature. ErrorCode: AuthenticationFailed
AuthenticationFailedServer failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
RequestId:78143b83-701e-0007-57a6-53ca4f000000
Time:2019-08-15T20:14:22.7942254ZThe MAC signature found in the HTTP request '(redacted base64 string)' is not the same as any computed signature. Server used following string to sign: 'PUT 61932 ...'
```

### Have you found a mitigation/solution?
Yes, trim all values in the metadata dict.

Old metadata (throws error):
```
metadata = {'LDate': '6/19/2018 12:15:16 PM', 'DocName': 'Utah Contracts 1 ', 'FileExtension': 'docx'}
service.create_blob_from_bytes(container, name, content, content_settings=content_settings, metadata=metadata)
```

New metadata (no error):
```
metadata = {'LDate': '6/19/2018 12:15:16 PM', 'DocName': 'Utah Contracts 1', 'FileExtension': 'docx'}
service.create_blob_from_bytes(container, name, content, content_settings=content_settings, metadata=metadata)
```

Guía de contribución

Abrir la guía de contribución

Línea de trabajo

Reproduzca el fallo mediante create_blob_from_bytes() usando metadatos con espacios en blanco iniciales o finales, tal como se muestra en el issue. Rastree cómo Azure Storage SDK autentica y firma esta solicitud y, a continuación, verifique que las cargas con esos metadatos se realizan correctamente, mientras que el ejemplo existente sin espacios en blanco finales sigue funcionando.

Escrito por el modelo de indexación a partir del texto del issue.

Evaluación

Stack tecnológico
python
Área
cloud
Tipo de issue
Error
Dificultad
4/5
Tiempo estimado
3-5 días
Estado de actividad
Estancado
Claridad
Necesita aclaración
Aptitud para principiantes
35/100

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.