我是 raspberrypi 的初学者,我目前正在研究它并希望将文件上传到 firebase。
我曾尝试使用 pyrebase 将数据上传到 firebase 。
我使用的代码是
import pyrebase
config = {
"apiKey": "AIzaSyDQIr6KCJTROzrAs8x9YvSSFo5zZ06N",
"authDomain": "achyuth13451601.firebaseapp.com",
"databaseURL": "https://achyuth13451601.firebaseio.com",
"storageBucket": "achyuth13451601.appspot.com",
}
firebase = pyrebase.initialize_app(config)
auth = firebase.auth()
user = auth.sign_in_with_email_and_password(email, password)
db = firebase.database()
data = {
"name": "Mortimer 'Morty' Smith"
}
results = db.child("users").push(data, user['idToken'])
但我收到一个未经授权的 url 和权限被拒绝的错误