-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
403 on getting list of pages #76
Comments
@mirzadelic did you find any other solution by now? :) I'm running into the same problem. |
@leongraumans I used custom permission with rest framework: common/permissions.py:
And in settings.py:
I used this as temporary solution, until I transferred, and then reverted to primary permission classes. Hope this helps you :) |
I was getting a 403 error as well but seems to be unrelated to django rest framewrok. It was related to url encoding of some the query parameters leading to mismatched digests. Details and PR here: #111 |
I've had this problem when the two servers were running different versions of wagtail-transfer |
This is still working 2023, great work! |
Still working in 2025! |
I tied with steps on docs but couldn't get list of pages, always getting 403 error.
Problem was that I have:
This is actually a problem, when I remove the default permission class it works. But I think this is not good.
permission_classes
on this specific view in the wagtail-transfer project can be[]
and it will be solved.Or is there any other solution that can fix this?
Thanks.
The text was updated successfully, but these errors were encountered: