Activity Feed
- Got a Kudo for "You do not have sufficient privileges" message. 02-17-2021 08:13 AM
- Kudoed Re: Export individual question banks for Stef_retired. 12-10-2020 06:23 PM
- Kudoed Re: Using the Canvas Styleguide: Buttons for alg813. 12-06-2020 09:16 PM
- Kudoed Using the Canvas Styleguide: Buttons for jperkins. 12-06-2020 09:14 PM
- Kudoed Re: Formatting tabs in Canvas page for James. 09-22-2020 07:42 PM
- Kudoed Re: Formatting tabs in Canvas page for Chris_Hofer. 09-22-2020 07:40 PM
- Kudoed When the Stakes are High (Part 2): Facilitating Online Assessment for jessjones. 08-13-2020 05:59 PM
- Posted "You do not have sufficient privileges" message on Canvas Question Forum. 08-13-2020 05:27 PM
- Kudoed How do I create a quiz using New Quizzes? for ctitmus. 08-13-2020 05:12 PM
- Got a Kudo for Re: Submissions API not returning all submissions?. 08-06-2020 01:58 AM
- Kudoed Direct Share of Modules for thebert3. 04-23-2020 10:26 PM
- Kudoed Customizing the Course Navigation Menu for dpurcell. 11-05-2019 03:03 PM
- Got a Kudo for Re: Submissions API not returning all submissions?. 10-09-2019 01:13 AM
- Posted Re: Submissions API not returning all submissions? on Canvas Developers Group. 10-08-2019 06:10 PM
- Kudoed Re: Submissions API not returning all submissions? for James. 10-08-2019 04:23 PM
- Got a Kudo for Re: Submissions API not returning all submissions?. 10-07-2019 02:21 PM
- Posted Re: Submissions API not returning all submissions? on Canvas Developers Group. 10-03-2019 11:11 PM
- Kudoed Bypassing Requirements/Prerequisites for kona. 07-31-2019 07:47 PM
- Kudoed Allowing Export gradebook by section(s) for hfchen. 07-23-2019 07:18 PM
- Got a Kudo for Re: Canvas Release Notes (2019-07-13). 07-05-2019 03:37 PM
My Posts
Post Details | Date Published | Views | Kudos |
---|---|---|---|
"You do not have sufficient privileges" message Is anyone else getting this error message when clicking links in community.canvaslms.com pages? One example: https://community.canvaslms.com/t5/FRD-Colder-Storage/What-is-New-Quizzes/m-p/254161&nbs... |
08-13-2020 |
553 |
1 |
08-13-2020
05:27 PM
1 Kudo
Is anyone else getting this error message when clicking links in community.canvaslms.com pages? One example:
https://community.canvaslms.com/t5/FRD-Colder-Storage/What-is-New-Quizzes/m-p/254161
received after clicking on "Learn more about New Quizzes" in https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-create-an-assessment-using-New-Quizzes/ta-p/1173
Is it something to do with my profile or a more general problem?
... View more
Labels
- Labels:
-
Canvas
10-08-2019
06:10 PM
1 Kudo
Thank you, James, and apologies for the delayed response. I've been away for a few days. I got some great clues from your post (this is a learning exercise for me as much as a problem to solve). I understand now that the Submissions API is acting correctly. I am actually using your canvasAPI() function, originally from your Course Due Dates Google sheet. When I check the Link headers, I get exactly what you suggested: "Link":"<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=1&per_page=100>; rel=\"current\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=2&per_page=100>; rel=\"next\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=1&per_page=100>; rel=\"first\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=3&per_page=100>; rel=\"last\"","status":"200 OK"} "Link":"<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=2&per_page=100>; rel=\"current\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=3&per_page=100>; rel=\"next\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=1&per_page=100>; rel=\"prev\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=1&per_page=100>; rel=\"first\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=3&per_page=100>; rel=\"last\"","status":"200 OK"} "Link":"<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=3&per_page=100>; rel=\"current\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=2&per_page=100>; rel=\"prev\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=1&per_page=100>; rel=\"first\",<https://rmit.instructure.com/api/v1/courses/20447/quizzes/73499/submissions?page=3&per_page=100>; rel=\"last\"","status":"200 OK"} So I needed to look elsewhere. Then I remembered that I had trouble with the object returned by the canvasAPI() function. When calling the Submissions API, the canvasAPI() function returns an object of the form: {"quiz_submissions":[{},{},{}]} instead of [{},{},{}]} so I was fixing this after using your canvasAPI() function. But what if this unexpected form of the array creates a problem within the canvasAPI() function itself? Sure enough, when looking through it I could see where it was falling out because the returned Submissions object was a single value/key pair. So, I used: if (json.hasOwnProperty('quiz_submissions')) { json = json.quiz_submissions; } to capture the condition, amend the object to the expected form and continue on. Now I'm getting all the data. Thanks for your help and your scripts! Cheers Ric
... View more
10-03-2019
11:11 PM
1 Kudo
Hi @stuart_ryan , I'm having the same problem as Glen did. There's more to it, though. When I compare the Student Analysis Report for a quiz with the data I get from calling the submissons API for the same quiz, I don't get data for all the students, for those students I do get data for, only their first submissions data is present. Changing the per_page value has an effect but doesn't solve the problem. When per_page is set to 200, I get the last 69 records ordered by student id, ignoring any subsequent submissions that may have been made by the student; when the value is 100, the same result. When the value is 50, the last 19 records are returned. When the value is 25, the same 19 are returned. When the value is 20, 9 records are returned and same again when the per_page value is set to 10. This is for a quiz allowing 2 attempts with 193 submissions. I may be missing something but the results seem to suggest there's something amiss with the Submissions API?
... View more
07-04-2019
07:06 PM
1 Kudo
In testing on our beta environment, for some assignments tested, the Eye icon does not change to 'solid' when a grading change is made. It's not clear what is responsible for the discrepancy. It does not appear to be related to assignment settings. In assignments where the Eye icon is present but does not change, the Grade Detail Tray does not display the 'hidden' label. Conversely, where the Eye icon does change as expected, the 'hidden' label appears as expected. In assignments where the Eye icon does not change, choosing 'Hide grades' from the vertical ellipsis dropdown menu results in an error message 'There was a problem hiding assignment grades'. A refresh of the page, and the Eye icon turns solid and the menu options from the vertical ellipsis change so that 'Hide Grades' is replaced with 'Post grades'. So it appears to be 'fixed' at this stage. Post Grades sidebar indicates number of submissions that are hidden. Max number displayed is '98+'. We have courses with over 10 times that enrollment number so this is not much use. It does not include the number of submissions graded but not posted, which would be useful. At this stage I'm concerned that there are too many unexplained behaviours involving the Eye icon. Unresolved, it will cause confusion.
... View more