App List
Returns a list of all known apps. Includes some summary information around the number of ratings and comments, as well as all information needed to configure and place the apps in a learning system.
Method | GET |
Endpoint |
Try It
https://www.eduappcenter.com/api/v2/lti_apps
|
require 'net/http' url = "https://www.eduappcenter.com/api/v1/lti_apps" uri = URI.parse(url) res = Net::HTTP.get_response(uri) body = res.body
import urllib import urllib2 url = 'https://www.eduappcenter.com/api/v1/lti_apps' response = urllib2.urlopen(url) body = response.read()
curl -i \ -H "Accept: applicaton/json" \ https://www.eduappcenter.com/api/v1/lti_apps
You are also able to pass along your API Token in the header in order to get the allowed list of applications.
curl -i \ -H "Accept: applicaton/json" \ -H "Authorization: Bearer YOUR_API_TOKEN_HERE" \ https://www.eduappcenter.com/api/v1/lti_apps