I'm currently using Podio JS SDK to connect to the podio REST API. I have setup a login screen to capture username and password using the username and password authentication flow.
I can make request and get information that I need. In one of my request i receive an image url. I then place the img url into an image tag like so,
<img src="img.url"/>
The problem is that my client can't not view the image. I looked here at Working with files in order to find an answer.
The problem is that the image can only be viewed in the client by a user who is currently logged in, but I've already authenticated.
Am I missing something? How can I show the image, being that I've already logged in with the username and password, I'm storing the access_token, refresh_token, etc. in local storage and can make all other necessary calls.