All Questions
6 questions
0
votes
1
answer
114
views
Converting django serializer data to google.protobuf.struct_pb2.Struct gives error: TypeError: bad argument type for built-in operation
I want to create a response message in grpc with the following format:
message Match {
int32 index = 1;
google.protobuf.Struct match = 2;
google.protobuf.Struct status = 3;
}
I have a ...
0
votes
2
answers
631
views
how to fix "TypeError: requires_system_checks must be a list or tuple." caused by "py manage.py grpcrunserver" command? [duplicate]
it's my first time aksing a question here so please take easy on me if I do it bad (or whatever) and help! Thanks.
I have a project in which I need to use django_grpc_framework, and I've implemented ...
0
votes
0
answers
591
views
Method not found when calling LIstRequest in grpc from client
I have written a function, to get the list, while connecting the server it show as error method not found:
grpc._channel._MultiThreadedRendezvous: <_MultiThreadedRendezvous of RPC that terminated ...
2
votes
0
answers
355
views
Problem installing Django Tech Stack on Apples M1
I just got a new Mac with an M1 chip, but I have problems getting our stack to run.
Its a django project, with a few dependencies attached. Most of them being:
grpcio (1.43.0)
google-cloud-vision==2....
1
vote
1
answer
558
views
Implement JWT in Django with gRPC
I read gRPC documentations but it was not clear for me.
In JWT requests (REST) we always send the token with each request, but what is authentication in gRPC?
4
votes
1
answer
14k
views
python gRPC error: "error": "13 INTERNAL: Failed to serialize response!" when trying to return a repeated message instead of stream in a List Request
I have django REST API that I am trying to convert into gRPC. I followed the Django grpc framework guide and created the following files:
models.py
class Organization(models.Model):
Org_name = ...