In my webapp I'm using the Noun Project API to create an icon picker for something they're creating. However, the Noun Project API gives me a URL to the icon that expires some time later. Ideally I can save the image to my Parse backend from the URL I'm given, but I have no idea how.
My assumption would've been to insert it into a file <input>
, but apparently HTML won't allow that. If I could create a File object from the URL image then I could save that easily, but I couldn't figure out how to do that either.
If anyone has any idea how to save a remote image to Parse, I would greatly appreciate your input. Any and all solutions are welcome, pure JS or anything -- even PHP, I'm getting desperate.