pyrebase.storage() - Неверная пара HTTP метод /URL

У меня есть скрипт, где я пытался загрузить изображение в хранилище Firebse с pyrebase для которого я использую storage функция, но она не работает и выдает следующую ошибку

Traceback (most recent call last):
  File "C:\Users\Angel\AppData\Local\Programs\Python\Python36\lib\site-packages\pyrebase\pyrebase.py", line 444, in raise_detailed_error
    request_object.raise_for_status()
  File "C:\Users\Angel\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://firebasestorage.googleapis.com/v0/b/gs://test-bc3ec.appspot.com//o?name=example.PNG

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\Angel\Documents\respaldo\pyrebase_1..py", line 24, in <module>
    storage.child("/example.PNG").put("Captura.PNG")
  File "C:\Users\Angel\AppData\Local\Programs\Python\Python36\lib\site-packages\pyrebase\pyrebase.py", line 406, in put
    raise_detailed_error(request_object)
  File "C:\Users\Angel\AppData\Local\Programs\Python\Python36\lib\site-packages\pyrebase\pyrebase.py", line 448, in raise_detailed_error
    raise HTTPError(e, request_object.text)
requests.exceptions.HTTPError: [Errno 400 Client Error: Bad Request for url: https://firebasestorage.googleapis.com/v0/b/gs://test-bc3ec.appspot.com//o?name=example.PNG] {
  "error": {
    "code": 400,
    "message": "Invalid HTTP method/URL pair."
  }
}
[Finished in 2.4s with exit code 1]
[shell_cmd: python -u "C:\Users\Angel\Documents\respaldo\pyrebase_1..py"]
[dir: C:\Users\Angel\Documents\respaldo]
[path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Users\Angel\AppData\Local\Programs\Python\Python36\Scripts\;C:\Users\Angel\AppData\Local\Programs\Python\Python36\;C:\Users\Angel\Videos\flutter\bin;C:\Users\Angel\AppData\Local\Programs\Microsoft VS Code\bin]

Это код:

 import pyrebase

config = {
    "apiKey":"AIzaSyDphkVRuW39CyUbLmT5OkeZ2YmAUhwEUm4",
    "authDomain":"test-bc3ec",
    "databaseURL":"https://test-bc3ec.firebaseio.com/",
    "storageBucket":"gs://test-bc3ec.appspot.com/"
}
firebase = pyrebase.initialize_app(config)

db = firebase.database()

uder = db.child("Nuevo").get()
print(uder.val())


#def stream_handler(message):
#   print(message['path'])
#   print(message['data'])


#myStream = db.child('Nuevo').stream(stream_handler)
storage = firebase.storage()
myfile = open("Captura.PNG","rb")
bytesm  = myfile.read()

fbupload = storage.child("/test/").put(bytesm)

Также попробуйте с firebase_admin

import firebase_admin
from firebase_admin import credentials,db,storage

cred = credentials.Certificate("nuevo.json")
firebase_admin.initialize_app(cred,{
    'databaseURL':'https://test-bc3ec.firebaseio.com/'
})

s = firebase_admin.storage()
s.child("imagenes/Captura.PNG").put("Captura.PNG")

ошибка в этом коде:

Traceback (most recent call last):
  File "C:\Users\Angel\Documents\respaldo\firebase_ad.py", line 13, in <module>
    s = firebase_admin.storage()
TypeError: 'module' object is not callable
[Finished in 0.8s]

но это тоже не работает

Пиребаз Второй

storage = firebase.storage()
myfile = open("Captura.PNG","rb")
bytesm  = myfile.read()

fbupload = storage.child("/test/Captura.png").put(bytesm)

1 ответ

Решение

Вопрос: неверный HTTP-метод / пара URL

  1. config["storageBucket"]

    Используя ваш config:

    "storageBucket":"gs://test-bc3ec.appspot.com/"  
    

    Выход:
    я получил Invalid HTTP method/URL pair.

    "ошибка": { "код": 400, "сообщение": "недопустимая пара методов HTTP /URL". }

    Изменился на

    Примечание: удалены ведущие gs:// и тянущийся /,

    "storageBucket":"test-bc3ec.appspot.com"  
    

    Выход:
    я получил Permissin denied вместо Invalid HTTP method/URL pair ,
    как я не могу против test-bc3ec

    "ошибка": { "код": 403, "сообщение": "В доступе отказано. Не удалось выполнить эту операцию"}

  2. Pyrebase # положить

    положил
    Метод put принимает путь к локальному файлу и необязательный токен пользователя.

    storage = firebase.storage()
    
    # as admin
    storage.child("images/example.jpg").put("example2.jpg")
    
    # as user
    storage.child("images/example.jpg").put("example2.jpg", user['idToken'])
    
  3. Ваш storage

    Замечания: "test" без ведущих / ,

    storage = firebase.storage()
    
    local_file_path = "Captura.PNG"
    storage_file_path = "test/Captura.PNG"
    
    fbupload = storage.child(storage_file_path).put(local_file_path)
    

Пожалуйста, сообщите Шаг 3, так как я не могу это проверить.

Протестировано с Python:3.4.2 - Pyrebase:3.0.27

Другие вопросы по тегам