| bio | website | |
|---|---|---|
| location | Brighton, UK | |
| age | ||
| visits | member for | 2 years, 3 months |
| seen | 39 mins ago | |
| stats | profile views | 193 |
Djangonaut etc...
|
6h |
comment |
'WSGIRequest' object has no attribute 'successful_authenticator' You probably need to add more information to the question. What type of view are you using, what does your authentication class look like, how are you setting the auth class on the view (by the REST_FRAMEWORK setting or authentication_classes on the view) etc... |
|
May 20 |
comment |
What is the recommended approach for SlugField validation in Django REST framework? Link to the subsequently merged pull request, for any future readers: github.com/tomchristie/django-rest-framework/pull/875 |
|
May 20 |
answered | What is the recommended approach for SlugField validation in Django REST framework? |
|
May 14 |
comment |
How do I include related model fields using Django Rest Framework? @WillBradley Nope. Let's continue the discussion on the ticket. github.com/tomchristie/django-rest-framework/issues/837 |
|
May 13 |
revised |
id field in django rest framework serializer added 263 characters in body |
|
May 3 |
revised |
Django REST different between permission classes and authentication classes added 16 characters in body |
|
May 2 |
comment |
Backbone Create model with Django Rest Framework I was trying to being constructive. It wasn't clear what behaviour you were seeing, or if you were getting an error client side or server side. |
|
May 2 |
comment |
Backbone Create model with Django Rest Framework You might want to expand on this: "The post abruptly fails with the OPTIONS failing" - it's not very clear what you mean. |
|
May 2 |
comment |
django-rest-framework PUT rewriting read-only slug field Gotcha. Then yup, you'll need to override pre_save accordingly. Something like obj.slug = unquote(self.kwargs.get(self.slug_url_kwarg, None)) |
|
May 2 |
answered | django-rest-framework PUT rewriting read-only slug field |
|
May 1 |
awarded | Revival |
|
Apr 30 |
comment |
What are some interactive resources for learning django? Kenneth Love. Yup, it's a KickStarter project. |
|
Apr 30 |
answered | What are some interactive resources for learning django? |
|
Apr 25 |
answered | How to lock out IP addresses after too many authentication failures? |
|
Apr 25 |
comment |
Is there a way to pre-lookup related field models? OF course there's also no requirement that you actually use the serializers at all, if you've got some really custom case do the data-wrangling directly, and just return it in a Response object. You'll still get the browseable API, permissions, auth etc., but you can be explicit about the precise view behavior. |
|
Apr 25 |
comment |
Is there a way to pre-lookup related field models? For example, as in the first section of tutorial part 3... django-rest-framework.org/tutorial/3-class-based-views.html |
|
Apr 25 |
comment |
Is there a way to pre-lookup related field models? I'm not exactly sure what your use-case looks like, but if you need something custom that doesn't quite fit into the pre-provided generic views, then I'd suggest just writing the view methods explictly. |
|
Apr 25 |
answered | Is there a way to pre-lookup related field models? |
|
Apr 18 |
comment |
How to insert POST data into Django model using rest-frameWork It's not really clear what the question is. I think you're asking how update a Subscription instance, given the post data. If that's the case you need to be getting the subscription instance and then doing something like... PostSubscriptionDetailSerializer(subscription, data=request.DATA) |
|
Apr 18 |
answered | Specifying a FilterSet for Django-rest-framework |