How to solve image data response as null in react native when using zoho image fetching api?

183 Views Asked by At

I got API to get full image URL from zoho inventory. But when I try to run it in react native using axios, It shows data null as API response. When I tried through postman it works well. Below show the API that I had used.

https://inventory.zoho.in/api/v1/items/{item_id}/image?organization_id=XXXXX

So my question is how can I fetch full image url in react native ?

1

There are 1 best solutions below

1
On

In order to fetch the full image url in react native, you will have to add the response type as arraybuffer or blob to receive the file in the API request. Kindly check if this works for you.