将我的 appengine 应用程序添加到 Moodle
我是moodle的新手,实际上使用GWT创建java应用程序并将其部署到appengine,实际上它是关于击键身份验证,其中通过键盘上的打字行为检测未经授权的用户,所以我创建了一个文本区域,它采用一些数据形式的密钥并将其发送到服务器端并与应用程序商店中的数据进行一些比较,我发现如果我将其添加到模块中那就太棒了,同时这个应用程序是我的毕业项目,所以当我与moodle集成时它对我来说很有用。我的问题是,考虑到我使用 appstore,如何将我的应用程序集成到 Moodle 中。
I'm new with moodle in fact create java application using GWT and deployed it to appengine, really it was about keystroke authentication in which detect the unauthorized users from their typing behavior on keyboard, so I make a text area that takes some data form key and send it to the server side and make some comparisons with data in the app store, i found that it would be Awesome if i add that to module meanwhile this application is my graduation project so when i integrate with moodle it is useful point for me. My question is how can i integrate my application to moodle taking in consideration that i use the appstore .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您研究一下称为 IMS LTI 的东西。这是一个很好的视频介绍:
http://vimeo.com/14100773
在 IMS LTI 之前以便挂钩进入 Moodle 后,您需要编写一个 Moodle 插件。但是使用 IMS LTI,您应该能够输入有关应用程序的一些详细信息,例如 URL 和共享密钥,并且使用 IMS LTI 用户数据和响应应该在 Moodle 和您的应用程序之间传递。 IMS LTI 标准的未来版本还将允许您传递分级信息。
I suggest you look into something called IMS LTI. Here is a good video introduction to it:
http://vimeo.com/14100773
Before IMS LTI in order to hook into Moodle you needed to write a Moodle plugin. But using IMS LTI you should be able to just enter in some details about your app, like the url and a shared key and using IMS LTI user data and responses should be passed between Moodle and your app. Future versions of the IMS LTI standard will also allow you to pass grading information.