-
API Refresh token URL
Hii… Everyone is there any API refresh Token URL Available?
-
Trying to use LTI 1.3 but having trouble with authentication. Keep getting 404s.
Hello, I'm trying to get our tool to work with 1.3 and brightspace. I'm currently trying to implement openid to autheticate with. Brightspace gets to my auth method fine but when I try to redirect the user to the openid auth endpoint I keep gettings 404. Checking your help it says to check I have all parameters correct…
-
Help with Postman and API connection
I'm new to working with APIs and have a project here at the college that I need to access the Datasets available in the Brightspace API. I'm trying to follow the "Learn Postman with Paul" course found here. And I'm stuck. My goal is to access the Datasets for All Grades, Final Grades, Content Progress and Learner Usage. To…
-
Getting the content of the html using Brightspace API
Dear Community, I am working with the Brightspace API and using the following call to get the structure of the course content: {{BrightspaceDomain}}/d2l/api/le/{{leversion}}/{{OrgUnitId}}/content/root/ In the description of the modules, from the HTML, I can extract information about whether the module contains an image,…
-
Regarding Rest API - Courses data and Users data
Hi Team, I am developing one LTI widget for Brightspace which requires some rest apis. I want to fetch course complete structure like course , module/submodule , topic /activity each module progress , completion data and also each activity completion status , grade etc for enrolled users . I can see few of data are…
-
How to include additional parameters in the authorization URL
Hello all, I am trying to include additional parameters in my authorization URL and then access them in my backend lambda function. Below is what I have const clientId = 'eb417d75-cf9d-4b91-9c78-707b396d7ff7'; const redirectUri = 'https://xxxxxx.com/dev/redirect_uri'; const scopes = 'core::'; / // Additional parameters if…
-
D2L Brightspace suspend data limits
Hi there, We currently develop courses using scorm 1.2 build with Articulate Rise and have had continuous issue with courses not "bookmarking" or suspending data correctly as they hit a memory limit (suspend data limit) I've been searching for options to fix this, however have not yet had success. We have it set to false…
-
What data is passed from Brightspace to EAB Navigate?
We have yet to see a functioning demo where we understand what data is being pulled into EAB Navigate I am searching for documentation that shows how the tool should work as we are running out of time to create our own training Has anyone integrated with EAB Navigate?
-
How to use APIs in a Widget?
I'm trying to present some useful information in a widget. - How many students have accessed that course - How many students have accessed a particular content item - Can we include User Attributes such as Gender? Not sure where to start. Is this even possible within a widget? Thanks in advance for your help.
-
How can we get course structure along with course completion status and course item and scores ?
Just wanted to get for a learner the course status and grade along with items data like score , completion status , completion criteria and competency aligned then competency and last titem accessed .
-
How do I add an External Learning Tool to a class
How do I add an External Learning Tool to a class
-
Force local login form for oauth2 when SSO is enabled
On our site we have SSO enabled for our students and teachers. For integrations which use the APIs we use local accounts. Is there a way to trigger the local login screen when using https://auth.brightspace.com/oauth2/auth to get a token so you can use a local account? Now yoy need tricks to add the ?noRedirect=1 to go to…
-
400 Errors on API after scope update
I am receiving 400 errors when I try to refresh my token after updating my scope. I tried restoring the scope to the previous values and am still getting a 400 error. I have tried testing in Postman but am getting other errors. Nothing in my code base has changed other than trying to update the scope variable. This is very…
-
Getting a permissions error when trying to use SQL
-
Rest api list and json response for all apis ? is there any swagger link available
Rest api list and json response for all apis ? is there any swagger link available
-
403 Error when doing a GET request to /orgstructure
We are able to make a successful GET request to /organization/info but getting a 403 for /orgstructure. What are we missing? Kind regards, Gerald @ Edlink.
-
Authorization Tokens that keep Expiring
I created a widget, that allows an Instructor or Admin level to create a course using a form and entering a title, and the rest is generated for the user. Doing so requires an API POST command that requires a token. What I'm finding is the token keeps expiring. I have the auto-refresh token turned on, but this didn't fix…
-
Why is the enrollment GET call in my code below not working? I am receiving a 400 Bad Request error.
// Define the base URL for the Brightspace API endpoint for enrollments const baseURL = `https://example.com/d2l/api/lp/1.44/enrollments/myenrollments/`; // Define the URL for fetching enrollments with the bookmark parameter let enrollmentsURL = `${baseURL}?bookmark=1`; // Array to store all enrollments let allEnrollments…