#cloud function execution url as callback url
9 messages · Page 1 of 1 (latest)
should be context.req.body.
Future<dynamic> main(final context) async {
final bodyRaw = context.req.bodyRaw;
final body = json.encode(context.req.body);
return context.res.send("OK", 200);
}
Oh, I missed that.
I'll give it a try again
Thank you so much I appreciate your response
no worries.
Pl. mark the title as [SOLVED] if the issue is resolved.
Happy Appwriting
.
I'll revert back. I'm currently on transit so I've not tried it to know if I'll get the body yet.