gpt4 book ai didi

ios - 在 iOS 中使用 Cloud Functions for Firebase

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:53:35 25 4
gpt4 key购买 nike

我已经使用 Node.js 为 Firebase 编写了一个云函数。

exports.fetchStudents = functions.https.onRequest((request, response) => {
return admin.database().ref('Student').once('value', (snapshot) => {
var students = snapshot.val();
response.send(students)
console.log(students)
});
});

我已经在 Firebase 服务器和控制台上部署了它,我得到了想要的值。我不想在我的 iOS 应用程序中使用此功能。我真的不知道如何在我的 iOS 应用程序中使用这些功能。

谢谢

最佳答案

我已经做到了,这很容易。您需要做的是在成功上传函数后点击 CLI 提供的 url。

Function URL (helloWorld): https://us-central1-project-id.cloudfunctions.net/helloWorld.

将 project-id 替换为您的项目 ID。

let url = URL(string:  "https://us-central1-project-id.cloudfunctions.net/fetchStudents")!

let urlReq = URLRequest(url: url)

let students = Alamofire.request(urlReq).validate().responseJSON { (response) in
switch response.result{
case .success(let value):
completion(JSON(value), nil)
case .failure(let error):
completion(nil, String(describing: error))
}
}

关于ios - 在 iOS 中使用 Cloud Functions for Firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47901274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com