
I created a cloud function and used the generated url as callback URL so that the function will be triggered each time I need a response from a third party API but I wasn't able to fetch the data it was sending to my function (what I used as the call back url) despite using both context.body and context.rawBody for dart.

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);
}
Recommended threads
- AI feature by functions?I'm creating a website where, in short, users can index certain genealogical content. In connection with the development of AI, I was thinking about introducing... 
- Unknown usage from one of my databaseI need support help. For more than 2 weeks, i didn't make any requests to my database, but I have noticed huge amount of reads and writes requests: Around 8000... 
- AppwriteException: Missing required para...I'm using node-appwrite sdk to retrive the documents. Example my code on pic, was define collectionId but error is still. Why? 
