redoc Questions
1
My company uses Open API Spec to organize the doc for internal APIs and render it through UI tools, for example, redoc.ly or Swagger. The API doc is managed as a private git repo and will never be ...
3
Solved
OpenAPI is good for RESTful services and at the moment, I'm hacking it to do it for asynchronous messaging system (specifically Kafka) by using POST to a /topic so that I can use redoc do create a ...
Thundering asked 2/12, 2019 at 17:7
1
Solved
Using DRF's built-in way of documenting the API, I was able to write a docstring like the following and each action was documented by its corresponding line:
"""
list: The list actio...
Amye asked 1/2, 2022 at 14:8
1
Solved
Could someone share some examples on how to implement API Documentation using ReDoc along with SpringBoot framework. It would be great help if someone knows some good examples with ReDoc + Springbo...
Quaternity asked 28/4, 2021 at 16:53
2
Solved
previously in Django 1.11, I'ved defined Django REST API in this way:
in url.py
url(r'^api/test_token$', api.test_token, name='test_token'),
in api.py
@api_view(['POST'])
def test_token(request):
...
Biotite asked 27/1, 2021 at 12:14
1
I am using django, django drf and drf-yasg to generate write my BE and generate documentation.
I have a model called User and a serializer for a user:
class UserSerializer(serializers.ModelSerial...
Pteridophyte asked 23/1, 2020 at 19:6
1
© 2022 - 2024 — McMap. All rights reserved.