Google 教室 API 和 Swift
Google Classroom API with Swift
我正在开发一个与教育相关的应用程序,我计划整合 Google 教室 API 以导入有关学生 类 和作业的信息。我已经可以使用 Google 登录,但我不知道现在该去哪里。我找不到任何关于使用课堂 API 和 Swift 的文档。如果有人能给我一些关于如何设置它的指示,将不胜感激!
swift 中好像没有可以使用 Classroom 的库。您将不得不编写自己的代码来命中 API 并消耗 JSON。我会使用类似 alamofire to make the network requests for the JSON. Then use codables to parse the JSON. The google documentation is going to be your friend to learn how to hit the API. If you don't know what an API is this 的 youtube 视频应该提供一个很好的概述。如果仍然没有意义,请继续研究 REST API。
祝你好运!
我正在开发一个与教育相关的应用程序,我计划整合 Google 教室 API 以导入有关学生 类 和作业的信息。我已经可以使用 Google 登录,但我不知道现在该去哪里。我找不到任何关于使用课堂 API 和 Swift 的文档。如果有人能给我一些关于如何设置它的指示,将不胜感激!
swift 中好像没有可以使用 Classroom 的库。您将不得不编写自己的代码来命中 API 并消耗 JSON。我会使用类似 alamofire to make the network requests for the JSON. Then use codables to parse the JSON. The google documentation is going to be your friend to learn how to hit the API. If you don't know what an API is this 的 youtube 视频应该提供一个很好的概述。如果仍然没有意义,请继续研究 REST API。
祝你好运!