Bronze 3
Since ‎01-13-2023
‎02-28-2023

My Stats

  • 9 Posts
  • 0 Solutions
  • 7 Likes given
  • 0 Likes received

Zyoumir's Bio

Badges Zyoumir Earned

View all badges

Recent Activity

I'm sending a get request to my backend, not changing headers, nor params nor Auth. However, the response is totally random, sometimes it sends back a code 200 status and we get the wanted response, and other times (On the same request) sends an erro...
The task here was to decode a pdf file and send it as a form-data.The backend receives the decoded pdf file and everything on apigee end seemed to work fine.When we go to check the received pdf file, it's blank, but it's not empty as the size is not ...
I'm trying to decode a base64 pdf file and send it to another endpoint.I used a python policy for the decoding part and here's the code```import base64pdfB64 = flow.getVariable("request.content")pdfFile = base64.b64decode(pdfB64)flow.setVariable("pdf...