Created
December 9, 2016 17:19
-
-
Save musicm122/f76a333b7478cda6c81e79a8ce71a770 to your computer and use it in GitHub Desktop.
Example of how to use scorm extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<List<CourseData>> GetCourses() | |
{ | |
var appId = "Your App Id"; | |
var secretKey = "Your Secret Key"; | |
var scormServiceUrl = "https://cloud.scorm.com/EngineWebServices/"; | |
ScormCloud.Configuration = new Configuration(scormEngineServiceUrl: scormServiceUrl, appId: appId, securityKey: secretKey, origin: ""); | |
var result = await ScormCloud.CourseService.GetCourseDetailListAsync(); | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment