Connecting a 3 wire load cell to UNO R3

Hi, I have a FS2050-000X-1500-G load cell from TE Connectivity (datasheet). It has only 3 pins however it is a load cell with a full Wheatstone Bridge. Additionally, the manufacturer has given me the following information: "This FS20 loadcell give out 1-4V analog output powered by 5VDC". I was hoping to get assistance on how to connect this to an Arduino UNO R3. Would I use the Analog Pins? Most set up guides I have been finding pertain to only 4 wire load cells or 3 wire load sensors. Most existing Arduino sketches will not work with a 3 wire load cell either. Any help is appreciated, thanks!

I have attached an image of my load cell and a schematic for reference.

This device does have a build-in full Wien bridge and instrumentation amplifier.
Just connect it's output to an analogue pin.

1-4volt output is actually saying it wrong, and only correct if the supply is exactly 5.000volt.
The sensor seems to have a ratiometric output, with a range of 20% to 80% of the supply.
Don't expect a high resolution from this sensor with an Arduino 10-bit A/D (~614 values).

See what zero A/D value you're getting without applying force.
Then...
float force = (analogRead(A0) - zeroValue) * multiplicationFactor; // depends on sensor type
Leo..