Command Rclone (urlcopy to gdrive) with external http link to my server?

Hello,

I have Rclone installed on my debian server.

i can copy file to my gdrive with this command
rclone copyurl -P "https://video.com/stream/?vid=vmDZtFsMQ" gdrive:/film -a

Is it possible to execute this command with an external link to my server ? i want to automatize the copy to grive with http command from a website or my local computer.

thanks

The easiest thing to do would be to run it from a command via ssh so

ssh me@remote.computer rclone copyurl -P "https://video.com/stream/?vid=vmDZtFsMQ" gdrive:/film -a

You can then setup passwordless ssh so you don't need to type a command each time.

To run it via a web interface will require quite a bit of programming.

1 Like

thanks a lot for your answer. i will try to integrate with node.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.