July 7, 20232 yr I'm building some php pages that use FileMaker's Data API to pull records from my filemaker database using fmPDA's fmDataAPI library. I'm running into problems when trying to view files from a container. I'm using the url returned in the JSON response in an image tag to view a jpeg. But it's not showing. echo '<img src="' . $responseData[0]['fieldData']['logo'] . '" />' As I understand it I should be able to take the url provided in the JSON response like the one below, plug it into a web browser and view the image. https://dev.rgcdata.com/Streaming_SSL/Additional_1/12119404ADCC7E2C307D1FE70AAFE2D0E551A65E9DF89BE17876AE537567464A.png?RCType=EmbeddedRCFileProcessor But when I do I get a 401 Unauthorized error Can anyone help with this?
Create an account or sign in to comment