Skip to content

Instantly share code, notes, and snippets.

@musicm122
Created December 9, 2016 17:19
Show Gist options
  • Save musicm122/f76a333b7478cda6c81e79a8ce71a770 to your computer and use it in GitHub Desktop.
Save musicm122/f76a333b7478cda6c81e79a8ce71a770 to your computer and use it in GitHub Desktop.
Example of how to use scorm extensions
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