Because of the difficulties with OAUTH 1.0 signing within Bubble, we have a small Node module hosted on webtask.io that does the tweeting for us (just pass the tweet text and the two tokens).
Works very well.
However we now need to post an image to twitter as well (two stage process, upload media, get media id, add id to tweet).
It uses the same node module, and is similarly simple as the tweet publish.
However, I am struggling to convert an image url into binary/base64.
There is not enough persistent storage in webtask, and I am not sure I want to be sending several MBs of image across an external API anyway.
Is this something that could be brought back âin houseâ by using the new Server Side actions ?