This is a rust library designed to facilitate building LTI applications. LTI prescribes a way to integrate rich learning applications (often remotely hosted and provided through third-party services) with platforms like learning management systems (LMS), portals, learning object repositories or other educational environments managed locally or in the cloud. More info about the LTI standard can be found here
The primary use case of LTI is to verify an lti launch. This ensures that the request to your application has not been tampered with and allows you to trust the given POST parameters.
Example of verifying an lti launch:
```rust extern crate lti; let mywwwformurlencodedparams = "oauthconsumerkey=asdf..."; let myconsumersecret = "asdf"; let validlaunch: bool = lti::verifylti_launch( // HTTP Method (for lti launches this should be a post) "POST",
// Full Uri for the lti launch "https://mydomain/ltilaunch",
// Url encoded request parameters mywwwformurlencodedparams,
// Consumer secret shared between Tool Consumer and Tool Provider myconsumersecret ); ```
Portions of this code, in particular, the code that signs oauth requests was heavily influenced, or taken from oauth-client-rs. I hope to be able to contribute back to that project upon hearing back from the project owner.