-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Workflow implementation of LTI as a Platform #152
Comments
@abanghendri do you implement this library successfully in your tool end? |
@anubhabmondalDirac yes, I'm able to implement it until content launch
I don't know if this error comes from this library or moodle, because it says 400 which mean client (my platform) error |
@abanghendri oh okk .. |
How can I implement find registration? what will be my code structure any one help? use OAT\Library\Lti1p3Core\Registration\RegistrationInterface; $registrationRepository = new class implements RegistrationRepositoryInterface public function findAll(): array public function findByClientId(string $clientId) : ?RegistrationInterface public function findByPlatformIssuer(string $issuer, string $clientId = null): ?RegistrationInterface public function findByToolIssuer(string $issuer, string $clientId = null): ?RegistrationInterface any demo example code available ? |
since it our company's propietary code thus I cannot share as is to anyone, so I'll back to you as soon as possible with my new integration example, may be 2-4 days @anubhabmondalDirac |
Ok, I understand. Thank you so much. |
Hi @anubhabmondalDirac , you can fork my repo here the steps is
|
@abanghendri Thank you so much. For me, it will be beneficial. |
@anubhabmondalDirac not too different I think, I used to use Codeigniter too, since this library is framework agnostic, you can use it on any PHP project even on native PHP |
@abanghendri Thanks, I will try my best. |
Hello, I need help about this package, I still confuse about step by step guide if I want integrate my laravel app as a LTI platform, I use moodle as LTI Tool provider and moodle give me Registration URL, what can I do with that link? I cannot find any code that tell me to process that link, what essential routes needed to be a Platform, how to process from Registration URL and get all the data from tool provider and then launch the course.
thank you in advance
The text was updated successfully, but these errors were encountered: