That’s not a great way of wording it, but basically yes. The restriction is actually that each device has its own Auth token, and that Auth token can only be used on one device.
You can however use the HTTP(S) API to write data to the datastreams belonging to that Auth token, and this can be done from any device. The device doesn’t even need to be connected to Blynk, and the API can even be called from a web browser.
Another way of transferring data from one device to another is to use Automations in Blynk.
Both of these approaches, plus the third option of using Node-Red are discussed above.
Yes, it can be achieved with either of the three methods described above - HTTP(S) API, Automations or Node-Red.
I’m lookinmg at your HTTP code. I see the part that sends to the web server (push_some_data() ) but I was wondering what code would be needed to receive the data on the other device? Or is that included in the code that you posted?
A standard Blynk sketch, using the auth token that you’ve sent the data to using push_some_data() with a BLYNK_WRITE(Vpin) function to receive the values and do something with them - like send them on your display.