django-rest-framework-proxy
django-rest-framework-proxy copied to clipboard
Django Rest Framework Proxy views
Taking into consideration of the activity in this project, it does seem abandoned to me. There is an alternative to it?
[Django 3 removed some Python 2 compatibility libraries](https://docs.djangoproject.com/en/3.0/releases/3.0/#removed-private-python-2-compatibility-apis) which this project depends on, making it impossible right now to upgrade to Django 3. This PR patches the problem by catching...
We are trying to proxy a third-party image service and we need the proxy library to respond with the raw binary payload it received from the service. Even after setting...
Hi there. Are you testing file proxying? I'm faced with this error. I'm little diving in the problem, and found this place: rest_framework_proxy/utils.py:61 ```return b'\r\n'.join(output)``` Maybe I don't understand something,...
With return_raw set to true, I got wrong content in the response data when trying to proxy an API that returns an mp3 file. Seems that we are using the...
This fixes an issue #28 by binary encoding all output parts of the StreamingMultipart header. Unit tests from #26 should already be covering this pull request's changes.
Current PyPI version 1.6.0 is broken when using "AUTH" on python 3. This was fixed when https://github.com/eofs/django-rest-framework-proxy/pull/16 was merged to master, but it was not yet released. In the mean...
I'm using this proxy library for a project where I'd like the downstream errors to be funneled back through the proxy. I was able to accomplish this for my project...