有没有办法在多人租户应用程序中创建多个Google教室帐户?
我希望创建一个多租户应用程序,该应用程序允许单个用户通过我的应用程序创建自己的Google教室。现在,当查看Google课堂API的现有开发人员参考时,我只会看到管理单个课堂内容的方法,无论是课程,学生,老师还是学习材料。我正在寻找的是为单独用户创建多个课堂帐户的一种方法。这有可能吗?
I am looking to create a multi-tenant apps that allows individual users to create their own google classrooms through my app. Now, when looking at the existing developer reference of google classroom api, I see only ways to manage the contents of a single classroom be it courses, students, teachers or study material. What I am looking for is a way to create multiple classroom accounts for separate users. Is this possible in any way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过创建A
course
您正在创建一个可以由组织管理的教室,如果您的方法是创建类或课程
在文档中,最终用户在文档中的调用方式,然后使用courses.create.create
应该是执行所需的API这个动作。参考:
方法:Courses.create
创建课程。
现在,考虑到这一点,如果您想构建一个将为多个领域提供服务并允许他们代表其老师创建课程的应用程序,我建议您检查不同的
Through the API by creating a
course
you are creating a classroom that can be managed by your organization, if your approach is to create classes orcourses
how it is called in the documentation, by the end user, then using thecourses.create
should be the API needed to perform this action.Reference:
Method: courses.create
Creates a course.
Now, with this in mind, if you want to build an app that will serve several domains and allow them to create classes on behalf of their Teachers I would suggest checking the different scenarios to analyze what would be the best for you.